:root {
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --text: #111827;
  --muted: #6B7280;
  --primary: #111827;
  --secondary: #374151;
  --accent: #EF4444;
  --border: rgba(17,24,39,0.12);
  --cosmos-glow: rgba(239,68,68,0.35);
  --science-ring: rgba(250,250,250,0.08);
  --exploration-depth: rgba(17,24,39,0.92);
  --vast-space: #000000;
  --dark-void: #000000;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--bg);
  background: var(--vast-space);
  background-image:
    radial-gradient(ellipse 120% 80% at 10% -20%, var(--cosmos-glow), transparent 55%),
    radial-gradient(ellipse 90% 60% at 90% 10%, rgba(55,65,81,0.45), transparent 50%),
    linear-gradient(180deg, var(--dark-void) 0%, var(--primary) 45%, var(--vast-space) 100%);
  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(1.5px 1.5px at 12% 18%, rgba(250,250,250,0.7), transparent),
    radial-gradient(1px 1px at 28% 72%, rgba(250,250,250,0.45), transparent),
    radial-gradient(1.5px 1.5px at 64% 34%, rgba(250,250,250,0.55), transparent),
    radial-gradient(1px 1px at 81% 58%, rgba(250,250,250,0.4), transparent),
    radial-gradient(1px 1px at 45% 12%, rgba(250,250,250,0.35), transparent),
    radial-gradient(1.5px 1.5px at 92% 88%, rgba(250,250,250,0.5), transparent);
  animation: vast-drift 48s linear infinite;
  opacity: 0.85;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 8% 42%, rgba(250,250,250,0.5), transparent),
    radial-gradient(1.5px 1.5px at 52% 66%, rgba(250,250,250,0.35), transparent),
    radial-gradient(1px 1px at 76% 22%, rgba(250,250,250,0.45), transparent),
    radial-gradient(1px 1px at 33% 91%, rgba(250,250,250,0.3), transparent);
  animation: cosmos-zoom 36s ease-in-out infinite alternate;
  opacity: 0.7;
}

@keyframes vast-drift {
  from { transform: translateY(0); }
  to { transform: translateY(-40px); }
}

@keyframes cosmos-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.disclosure-banner {
  background: var(--dark-void);
  width: 100%;
  position: relative;
  z-index: 50;
  flex-shrink: 0;
}

.disclosure-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(250,250,250,0.82);
  line-height: 1.4;
}

.disclosure-icon {
  flex-shrink: 0;
  font-size: 14px;
}

.site-wrap {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.site-wrap > main {
  flex: 1 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark-void);
  height: 52px;
  box-shadow: 0 1px 0 var(--science-ring), 0 8px 32px rgba(0,0,0,0.45);
}

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

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--bg);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 15px;
}

.brand-lockup img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.nav-cta {
  margin-left: auto;
  margin-right: 12px;
  color: var(--bg);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(239,68,68,0.18);
  box-shadow: 0 0 20px var(--cosmos-glow);
  transition: transform 0.6s ease, background 0.4s ease;
}

.nav-cta:hover {
  transform: scale(1.04);
  background: rgba(239,68,68,0.32);
}

.burger {
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--bg);
  border-radius: 1px;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

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

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

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

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 88vw;
  height: 100vh;
  background: var(--exploration-depth);
  box-shadow: -12px 0 40px rgba(0,0,0,0.55), inset 0 0 80px rgba(239,68,68,0.06);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 200;
  padding: 72px 24px 32px;
  overflow-y: auto;
}

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

.nav-drawer a {
  display: block;
  color: var(--bg);
  text-decoration: none;
  padding: 12px 0;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: none;
  box-shadow: 0 1px 0 var(--science-ring);
  transition: color 0.3s ease, padding-left 0.4s ease;
}

.nav-drawer a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 150;
}

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

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

.hero {
  padding: 48px 16px 56px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(17,24,39,0.08);
  top: -40px;
  right: 8%;
  box-shadow: 0 0 0 40px rgba(17,24,39,0.03), 0 0 60px var(--cosmos-glow);
  pointer-events: none;
}

.hero-stack {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  min-height: 220px;
}

.hero-card {
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(17,24,39,0.14), 0 0 0 1px transparent;
}

.hero-card-back {
  background: rgba(55,65,81,0.08);
  color: var(--secondary);
  padding: 28px 32px;
  position: absolute;
  inset: 10px 0 auto 20px;
  z-index: 1;
  font-size: 16px;
  line-height: 1.55;
}

.hero-card-front {
  background: var(--surface);
  color: var(--text);
  padding: 32px;
  position: relative;
  z-index: 2;
}

.hero-card-front h1 {
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

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

@media (max-width: 700px) {
  .hero-stack {
    min-height: 0;
  }
  .hero-card-back {
    position: static;
    margin-bottom: 12px;
    inset: auto;
  }
  .hero-card-front {
    margin: 0;
  }
}

.offers-section {
  padding: 56px 0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.72), rgba(17,24,39,0.88)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

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

.section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.section-lead {
  color: rgba(250,250,250,0.7);
  margin-bottom: 28px;
  max-width: 640px;
}

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

.offer-card {
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 30px rgba(239,68,68,0.08);
  transition: transform 0.7s ease;
}

.offer-card:hover {
  transform: scale(1.025);
}

.offer-logo {
  width: 220px;
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
}

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

.offer-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.offer-bonus {
  font-size: 14px;
  color: #fbbf24;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.offer-terms {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

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

.offer-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: filter 0.3s ease, transform 0.5s ease;
}

.offer-btn:hover {
  filter: brightness(1.08);
  transform: scale(1.02);
}

.info-block {
  padding: 56px 0;
  position: relative;
}

.info-block:nth-child(odd) {
  background: rgba(0,0,0,0.35);
}

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

.info-block h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

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

.info-block ul {
  margin: 12px 0 16px 18px;
  color: rgba(250,250,250,0.78);
}

.info-block li {
  margin-bottom: 6px;
}

.topic-cta {
  display: inline-flex;
  margin-top: 16px;
  padding: 10px 18px;
  background: rgba(239,68,68,0.15);
  color: var(--bg);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 0 24px var(--cosmos-glow);
  transition: transform 0.55s ease, background 0.35s ease;
}

.topic-cta:hover {
  transform: scale(1.04);
  background: rgba(239,68,68,0.28);
}

.layout-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

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

.mini-card {
  background: rgba(255,255,255,0.04);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 0 0 1px var(--science-ring), 0 8px 24px rgba(0,0,0,0.25);
}

.mini-card h3 {
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--accent);
}

.mini-card p {
  font-size: 13px;
  margin: 0;
}

.layout-rail {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
}

.rail-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
}

.layout-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
}

.stat-pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  font-size: 13px;
  box-shadow: inset 0 0 0 1px var(--science-ring);
}

.layout-quote {
  margin: 20px 0;
  padding: 20px 24px;
  font-size: 17px;
  font-style: italic;
  color: rgba(250,250,250,0.9);
  background: linear-gradient(90deg, rgba(239,68,68,0.12), transparent);
  border-radius: 0 12px 12px 0;
  box-shadow: inset 3px 0 0 var(--accent);
}

.layout-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.mosaic-item {
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
}

.layout-steps {
  counter-reset: step;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.layout-steps li {
  counter-increment: step;
  position: relative;
  padding: 14px 14px 14px 52px;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
}

.layout-steps li::before {
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px var(--cosmos-glow);
}

.layout-timeline {
  border-left: none;
  margin: 18px 0 0 8px;
  padding-left: 20px;
  box-shadow: inset 2px 0 0 var(--accent);
}

.layout-timeline .tl-item {
  padding: 0 0 18px 12px;
  position: relative;
}

.layout-timeline .tl-item::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 12px var(--cosmos-glow);
}

.decor-img {
  max-width: 100%;
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

.decor-wrap {
  max-width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.decor-bg {
  width: 100%;
  max-width: min(420px, 100%);
  height: 200px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.science-orbit {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 16px auto;
  box-shadow:
    0 0 0 1px var(--science-ring),
    0 0 0 18px rgba(250,250,250,0.03),
    0 0 0 36px rgba(250,250,250,0.02),
    0 0 40px var(--cosmos-glow);
  position: relative;
}

.science-orbit::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  top: 8px;
  left: 50%;
  box-shadow: 0 0 12px var(--cosmos-glow);
  animation: orbit-spin 8s linear infinite;
  transform-origin: 0 52px;
}

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

.exploration-band {
  padding: 28px;
  margin-top: 16px;
  border-radius: 16px;
  background: radial-gradient(circle at 20% 30%, rgba(239,68,68,0.15), transparent 55%), rgba(255,255,255,0.03);
  box-shadow: 0 0 60px rgba(0,0,0,0.3);
}

.footer {
  background: var(--dark-void);
  padding: 48px 0 28px;
  margin-top: 0;
  box-shadow: 0 -1px 0 var(--science-ring);
}

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

.footer h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  color: rgba(250,250,250,0.55);
}

.footer a {
  color: rgba(250,250,250,0.8);
  text-decoration: none;
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

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

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bg);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-brand img {
  width: 28px;
  height: 28px;
}

.footer-text {
  font-size: 13px;
  color: rgba(250,250,250,0.6);
  margin-bottom: 10px;
  max-width: 360px;
}

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

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

.footer-badges img {
  height: 36px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  opacity: 0.85;
}

.footer-meta {
  font-size: 12px;
  color: rgba(250,250,250,0.45);
  line-height: 1.6;
}

.footer-meta p {
  margin-bottom: 6px;
}

.page-hero {
  padding: 40px 0 24px;
  background: var(--bg);
  color: var(--text);
}

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

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

.page-content {
  padding: 40px 0 64px;
  color: rgba(250,250,250,0.85);
}

.page-content h1 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

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

.page-content h3 {
  font-size: 1.05rem;
  margin: 20px 0 10px;
}

.page-content p,
.page-content li {
  margin-bottom: 10px;
  max-width: 760px;
}

.page-content ul {
  margin: 8px 0 16px 18px;
}

.page-content a {
  color: var(--accent);
}

.legal-shell {
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 0 0 1px var(--science-ring), 0 20px 50px rgba(0,0,0,0.35);
}

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

.contact-form label {
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.06);
  color: var(--bg);
  font-family: inherit;
  font-size: 15px;
  box-shadow: inset 0 0 0 1px var(--science-ring);
}

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

.contact-form button {
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  align-self: flex-start;
}

.form-error {
  color: var(--accent);
  font-size: 13px;
  display: none;
}

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

.form-success {
  display: none;
  padding: 20px;
  background: rgba(239,68,68,0.12);
  border-radius: 12px;
  max-width: 520px;
}

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

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.age-gate.is-active {
  display: flex;
}

.age-gate-dialog {
  background: var(--primary);
  color: var(--bg);
  max-width: 400px;
  width: 100%;
  padding: 28px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 60px var(--cosmos-glow);
}

.age-gate-dialog h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.age-gate-dialog p {
  color: rgba(250,250,250,0.7);
  font-size: 14px;
  margin-bottom: 20px;
}

.age-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-actions button {
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.age-yes {
  background: var(--accent);
  color: #fff;
}

.age-no {
  background: rgba(255,255,255,0.08);
  color: var(--bg);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 9000;
  max-width: 480px;
  margin: 0 auto;
  background: var(--primary);
  color: var(--bg);
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  display: none;
}

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

.cookie-banner p {
  font-size: 13px;
  color: rgba(250,250,250,0.75);
  margin-bottom: 14px;
}

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

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

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

.cookie-reject {
  background: rgba(255,255,255,0.1);
  color: var(--bg);
}

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

.redir-box {
  max-width: 420px;
}

.spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(250,250,250,0.15);
  border-top-color: var(--accent);
  margin: 0 auto 20px;
  animation: spin 0.8s linear infinite;
}

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

.redir-box p {
  margin-bottom: 10px;
  color: rgba(250,250,250,0.8);
}

.redir-note {
  font-size: 12px;
  color: rgba(250,250,250,0.5);
}

.ad-badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  background: rgba(239,68,68,0.2);
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

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

.error-page h1 {
  font-size: 3rem;
  margin-bottom: 8px;
}

.error-page a {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .layout-split,
  .layout-rail {
    grid-template-columns: 1fr;
  }
  .rail-label {
    writing-mode: horizontal-tb;
    transform: none;
    letter-spacing: 0.16em;
    justify-content: flex-start;
  }
  .layout-cards {
    grid-template-columns: 1fr;
  }
  .layout-mosaic {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .offer-logo {
    width: 180px;
    height: 60px;
  }

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

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

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

  .decor-bg {
    max-width: 100%;
    height: 160px;
  }

  .hero::before {
    width: 160px;
    height: 160px;
    right: -40px;
  }

  .disclosure-inner {
    padding-right: 12px;
  }
}
