:root {
  --bg: #1C1C1C;
  --surface: #262626;
  --text: #FFFFFF;
  --muted: #A0A0A0;
  --primary: #C5B358;
  --secondary: #D4AF37;
  --accent: #E6E6E6;
  --border: rgba(197,179,88,0.2);
  --pixel: "Courier New", "Lucida Console", Monaco, monospace;
  --ui: Tahoma, "MS Sans Serif", "Segoe UI", sans-serif;
  --style-retro: retro;
  --style-90s: 90s;
  --style-os: operating system;
  --style-skeuo: skeuomorphic;
  --style-nostalgic: nostalgic;
  --nav-h: 44px;
  --bevel-light: rgba(230, 230, 230, 0.35);
  --bevel-dark: rgba(0, 0, 0, 0.65);
  --win-face: #c0c0c0;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--ui);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(160deg, rgba(28, 28, 28, 0.98) 0%, rgba(38, 38, 38, 0.92) 45%, rgba(28, 28, 28, 1) 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(197, 179, 88, 0.03) 2px,
      rgba(197, 179, 88, 0.03) 4px
    );
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse at 88% 8%, rgba(197, 179, 88, 0.1), transparent 42%),
    radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.07), transparent 40%);
}

body::after {
  content: var(--style-retro) " " var(--style-90s) " " var(--style-os) " " var(--style-skeuo) " " var(--style-nostalgic);
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

body > * {
  position: relative;
  z-index: 1;
}

body.age-locked {
  overflow: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

main {
  flex: 1 0 auto;
}

.is-hidden {
  display: none !important;
}

.disclosure-banner {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 3;
}

.disclosure-icon {
  width: 40px;
  flex-shrink: 0;
  background: var(--secondary);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.disclosure-text {
  flex: 1;
  background: rgba(230, 230, 230, 0.92);
  color: #1c1c1c;
  font-size: 12px;
  line-height: 1.45;
  padding: 8px 12px;
  text-align: left;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #0F0F0F;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--primary), transparent) 1;
  box-shadow: 0 1px 0 rgba(197, 179, 88, 0.35);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  flex-shrink: 0;
}

.brand-lockup:hover {
  color: var(--primary);
}

.brand-lockup img {
  max-height: 20px;
  width: auto;
  height: 20px;
  object-fit: contain;
  image-rendering: pixelated;
}

.brand-name {
  font-family: var(--pixel);
  font-size: 13px;
  letter-spacing: 0.4px;
  image-rendering: pixelated;
  white-space: nowrap;
}

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

.nav-desktop a {
  position: relative;
  color: var(--accent);
  font-size: 12px;
  padding: 4px 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-desktop a .nav-ico {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: 1px solid var(--bevel-dark);
  flex-shrink: 0;
}

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

.nav-desktop a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateX(-50%);
}

.nav-burger {
  display: none;
  width: 36px;
  height: 32px;
  background: var(--surface);
  border-top: 2px solid var(--bevel-light);
  border-left: 2px solid var(--bevel-light);
  border-right: 2px solid var(--bevel-dark);
  border-bottom: 2px solid var(--bevel-dark);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.55);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-burger span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--text);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1100;
}

.nav-backdrop.is-open {
  display: block;
}

.nav-drawer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: #141414;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  transform: translateY(110%);
  transition: transform 0.28s ease;
  padding: 20px 20px 32px;
  max-height: 78vh;
  overflow-y: auto;
  border-top: 2px solid var(--primary);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.5);
}

.nav-drawer.is-open {
  transform: translateY(0);
}

.nav-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--pixel);
  font-size: 13px;
  color: var(--primary);
}

.nav-drawer-close {
  background: var(--surface);
  color: var(--text);
  border-top: 2px solid var(--bevel-light);
  border-left: 2px solid var(--bevel-light);
  border-right: 2px solid var(--bevel-dark);
  border-bottom: 2px solid var(--bevel-dark);
  width: 32px;
  height: 28px;
  cursor: pointer;
  font-size: 16px;
}

.nav-drawer ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.nav-drawer a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--surface);
  color: var(--accent);
  font-size: 13px;
  border-top: 2px solid var(--bevel-light);
  border-left: 2px solid var(--bevel-light);
  border-right: 2px solid var(--bevel-dark);
  border-bottom: 2px solid var(--bevel-dark);
}

.win95-window {
  background: var(--win-face);
  color: #111;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.55);
}

.win95-titlebar {
  background-image: linear-gradient(
    90deg,
    #000080 0%,
    #1084d0 40%,
    #000080 70%,
    #1084d0 100%
  );
  background-size: 8px 100%;
  color: #fff;
  font-family: var(--pixel);
  font-size: 12px;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  image-rendering: pixelated;
}

.win95-titlebar .icon-dot {
  width: 10px;
  height: 10px;
  background: var(--secondary);
  border: 1px solid #fff;
  flex-shrink: 0;
}

.win95-body {
  padding: 14px;
  background: var(--win-face);
  color: #111;
}

.btn-3d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  font-family: var(--ui);
  font-size: 13px;
  color: #111;
  background: var(--win-face);
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.45);
  cursor: pointer;
  text-decoration: none;
}

.btn-3d:hover {
  color: #111;
  background: #d8d8d8;
}

.btn-3d:active {
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  box-shadow: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  font-size: 13px;
  color: #111;
  background: transparent;
  border: 1px solid #808080;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: calc(100vh - var(--nav-h) - 48px);
  max-height: 720px;
}

.hero-media {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  border-right: 2px solid var(--bevel-dark);
}

.hero-copy {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  padding: 40px 36px;
  gap: 14px;
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(197, 179, 88, 0.25);
  pointer-events: none;
}

.hero-copy h1 {
  font-family: var(--pixel);
  font-size: clamp(22px, 3.2vw, 36px);
  line-height: 1.25;
  color: var(--primary);
  image-rendering: pixelated;
  max-width: 18ch;
}

.hero-copy p {
  color: var(--muted);
  max-width: 36ch;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.section-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 48px 24px;
}

.section-title {
  font-family: var(--pixel);
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--primary);
  margin-bottom: 10px;
  image-rendering: pixelated;
}

.section-lead {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 62ch;
}

.offers-section {
  position: relative;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(28, 28, 28, 0.82), rgba(28, 28, 28, 0.9)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.offer-card {
  background: linear-gradient(180deg, #1a3d2a 0%, #0f2418 100%);
  border: 2px solid #2ecc71;
  border-radius: 0;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.45);
}

.offer-logo {
  width: 160px;
  height: 72px;
  margin: 0 auto;
  background: #fff;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid #111;
  box-sizing: border-box;
}

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

.offer-name {
  font-family: var(--pixel);
  color: #f1c40f;
  font-size: 15px;
  text-align: center;
}

.offer-bonus-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-bonus {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  max-width: 100%;
}

.offer-terms {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.offer-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.4;
}

.offer-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  background: #f1c40f;
  color: #111;
  font-weight: 700;
  font-size: 13px;
  border-top: 2px solid #fff59d;
  border-left: 2px solid #fff59d;
  border-right: 2px solid #7a6500;
  border-bottom: 2px solid #7a6500;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.4);
  text-align: center;
}

.offer-cta:hover {
  color: #111;
  background: #ffd84d;
}

.info-section {
  position: relative;
  border-top: 1px solid var(--border);
}

.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  width: 84%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 179, 88, 0.35), transparent);
}

.decor-img {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: cover;
  border-top: 2px solid var(--bevel-light);
  border-left: 2px solid var(--bevel-light);
  border-right: 2px solid var(--bevel-dark);
  border-bottom: 2px solid var(--bevel-dark);
}

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

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

.layout-cards article {
  background: var(--surface);
  padding: 14px;
  border-top: 2px solid var(--bevel-light);
  border-left: 2px solid var(--bevel-light);
  border-right: 2px solid var(--bevel-dark);
  border-bottom: 2px solid var(--bevel-dark);
}

.layout-cards h3 {
  font-family: var(--pixel);
  font-size: 13px;
  color: var(--secondary);
  margin-bottom: 6px;
}

.layout-cards p {
  font-size: 13px;
  color: var(--muted);
}

.steps-list {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.steps-list li {
  counter-increment: step;
  background: var(--surface);
  padding: 12px 14px 12px 48px;
  position: relative;
  border: 1px solid var(--border);
}

.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 12px;
  top: 12px;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pixel);
  font-size: 12px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip-row span {
  background: rgba(197, 179, 88, 0.12);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 6px 10px;
  font-size: 12px;
  font-family: var(--pixel);
}

.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 14px;
}

.pull-quote {
  margin: 18px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--primary);
  background: rgba(197, 179, 88, 0.08);
  font-family: var(--pixel);
  font-size: 15px;
  color: var(--accent);
}

.mini-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 13px;
}

.mini-table th,
.mini-table td {
  border: 1px solid var(--border);
  padding: 8px 10px;
  text-align: left;
}

.mini-table th {
  background: rgba(197, 179, 88, 0.15);
  color: var(--primary);
  font-family: var(--pixel);
  font-weight: 400;
}

.guide-blocks {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.guide-blocks details {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 12px;
}

.guide-blocks summary {
  cursor: pointer;
  font-family: var(--pixel);
  color: var(--secondary);
  font-size: 13px;
}

.guide-blocks p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.timeline {
  margin-top: 14px;
  border-left: 2px solid var(--primary);
  padding-left: 16px;
  display: grid;
  gap: 12px;
}

.timeline article h3 {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 4px;
}

.timeline article p {
  font-size: 13px;
  color: var(--muted);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.pros-cons div {
  background: var(--surface);
  padding: 14px;
  border: 1px solid var(--border);
}

.pros-cons h3 {
  font-family: var(--pixel);
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--primary);
}

.pros-cons ul {
  margin-left: 16px;
  color: var(--muted);
  font-size: 13px;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.stat-band div {
  background: linear-gradient(180deg, rgba(197, 179, 88, 0.16), rgba(38, 38, 38, 0.9));
  border: 1px solid var(--border);
  padding: 14px;
  text-align: center;
}

.stat-band strong {
  display: block;
  font-family: var(--pixel);
  color: var(--secondary);
  font-size: 18px;
  margin-bottom: 4px;
}

.stat-band span {
  font-size: 12px;
  color: var(--muted);
}

.info-cta {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--primary);
  border-top: 2px solid var(--bevel-light);
  border-left: 2px solid var(--bevel-light);
  border-right: 2px solid var(--bevel-dark);
  border-bottom: 2px solid var(--bevel-dark);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.45);
  font-size: 13px;
  font-family: var(--pixel);
}

.info-cta:hover {
  color: var(--secondary);
  background: #2e2e2e;
}

.site-footer {
  background: #121212;
  border-top: 2px solid var(--primary);
  padding: 36px 24px 28px;
  margin-top: auto;
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.footer-brand img {
  height: 24px;
  width: auto;
  max-height: 24px;
  image-rendering: pixelated;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

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

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

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

.footer-text {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  max-width: 80ch;
}

.footer-company {
  color: var(--accent);
  font-size: 12px;
}

.footer-updated {
  color: var(--primary);
  font-size: 12px;
  font-family: var(--pixel);
}

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

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

.modal-box {
  width: min(420px, 100%);
}

.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1900;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.cookie-banner p {
  color: var(--muted);
  font-size: 13px;
  max-width: 70ch;
}

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

.page-hero {
  padding: 36px 24px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--pixel);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--primary);
  image-rendering: pixelated;
  margin-bottom: 8px;
}

.page-hero p {
  color: var(--muted);
  max-width: 60ch;
}

.page-content {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 32px 24px 56px;
}

.page-content h2 {
  font-family: var(--pixel);
  font-size: 18px;
  color: var(--secondary);
  margin: 28px 0 10px;
}

.page-content h3 {
  font-size: 15px;
  color: var(--accent);
  margin: 18px 0 8px;
}

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

.page-content ul {
  margin: 0 0 14px 18px;
  color: var(--muted);
}

.page-content li {
  margin-bottom: 6px;
}

.contact-form {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 18px;
  background: var(--surface);
  padding: 18px;
  border-top: 2px solid var(--bevel-light);
  border-left: 2px solid var(--bevel-light);
  border-right: 2px solid var(--bevel-dark);
  border-bottom: 2px solid var(--bevel-dark);
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--accent);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  background: #111;
  color: var(--text);
  border: 1px solid var(--border);
  font-family: var(--ui);
  font-size: 14px;
}

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

.field-error {
  color: #e07474;
  font-size: 12px;
  min-height: 16px;
}

.form-success {
  background: rgba(197, 179, 88, 0.12);
  border: 1px solid var(--border);
  padding: 18px;
  color: var(--accent);
  max-width: 520px;
}

.redirect-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.redirect-box {
  width: min(460px, 100%);
}

.redirect-box .spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #808080;
  border-top-color: #000080;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 14px;
}

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

.redirect-notes {
  margin-top: 12px;
  font-size: 12px;
  color: #333;
}

#AD {
  font-weight: 700;
  margin-top: 8px;
}

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

.error-page h1 {
  font-family: var(--pixel);
  font-size: 42px;
  color: var(--primary);
  margin-bottom: 10px;
}

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

.sub-layout-rail {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 32px 24px 56px;
}

.sub-rail {
  background: var(--surface);
  padding: 16px;
  border: 1px solid var(--border);
  height: fit-content;
  position: sticky;
  top: 60px;
}

.sub-rail h2 {
  font-family: var(--pixel);
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 10px;
}

.sub-rail ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.sub-rail a {
  color: var(--muted);
  font-size: 12px;
}

.sub-main h2 {
  font-family: var(--pixel);
  font-size: 18px;
  color: var(--secondary);
  margin: 24px 0 10px;
}

.sub-main p {
  color: var(--muted);
  margin-bottom: 12px;
}

.sub-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 32px 24px 56px;
  align-items: start;
}

.sub-split h2 {
  font-family: var(--pixel);
  font-size: 18px;
  color: var(--secondary);
  margin: 22px 0 10px;
}

.sub-split p {
  color: var(--muted);
  margin-bottom: 12px;
}

.sub-band {
  width: 100%;
  min-height: 180px;
  background-size: cover;
  background-position: center;
  border-top: 2px solid var(--bevel-light);
  border-bottom: 2px solid var(--bevel-dark);
}

.sub-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}

.sub-mosaic .tile {
  min-height: 140px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
}

.sub-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.sub-stats div {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 14px;
  text-align: center;
}

.sub-stats strong {
  display: block;
  font-family: var(--pixel);
  color: var(--primary);
  font-size: 16px;
}

.sub-stats span {
  font-size: 12px;
  color: var(--muted);
}

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

  .nav-burger {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: 1fr;
    max-height: none;
    min-height: 0;
  }

  .hero-media {
    max-height: 180px;
    min-height: 160px;
    max-width: 100%;
    border-right: none;
    border-bottom: 2px solid var(--bevel-dark);
  }

  .hero-copy {
    align-items: stretch;
    text-align: left;
    padding: 28px 20px;
  }

  .hero-copy h1,
  .hero-copy p,
  .hero-actions {
    max-width: none;
    justify-content: flex-start;
  }

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

  .offer-logo {
    width: 160px;
    height: 72px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .offer-bonus {
    font-size: 13px;
  }

  .layout-cards,
  .split-media,
  .pros-cons,
  .stat-band,
  .sub-layout-rail,
  .sub-split,
  .sub-mosaic,
  .sub-stats {
    grid-template-columns: 1fr;
  }

  .sub-rail {
    position: static;
  }

  .site-header {
    padding: 0 16px;
  }

  .decor-img {
    max-width: 100%;
    max-height: 220px;
  }

  .sub-band {
    max-width: 100%;
    min-height: 140px;
    max-height: 180px;
  }
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .nav-drawer ul {
    grid-template-columns: 1fr;
  }

  .offer-logo {
    width: 140px;
    height: 64px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  .offer-bonus {
    font-size: 12px;
    line-height: 1.4;
  }

  .decor-img {
    max-width: 100%;
    width: 100%;
    max-height: 180px;
    height: auto;
  }

  .sub-band,
  .hero-media {
    max-width: 100%;
    width: 100%;
  }

  .section-wrap,
  .page-content,
  .sub-split,
  .sub-layout-rail {
    padding-left: 16px;
    padding-right: 16px;
  }
}
