:root {
  --bg: #0F172A;
  --surface: #1E293B;
  --text: #F8FAFC;
  --muted: #94A3B8;
  --primary: #38BDF8;
  --secondary: #6366F1;
  --accent: #F472B6;
  --border: rgba(255,255,255,0.1);
  --gold: #C9A24B;
  --gold-soft: rgba(201,162,75,0.16);
  --serif: Georgia, 'Times New Roman', Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

.hidden { display: none !important; }

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(99,102,241,0.14), transparent 60%),
    radial-gradient(900px 480px at -10% 20%, rgba(56,189,248,0.08), transparent 55%),
    linear-gradient(180deg, #0B1220 0%, var(--bg) 40%, #0D1526 100%);
  background-color: var(--bg);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color 0.4s ease; }
a:hover { color: var(--gold); }
img { max-width: 100%; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.site-main { flex: 1 0 auto; width: 100%; }

section, .band { position: relative; }
section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,75,0.55), transparent);
}
section.first-block::before, .band.first-block::before { display: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.25; color: var(--text); }
h1 { font-size: clamp(30px, 4.2vw, 46px); letter-spacing: 0.5px; }
h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 18px; }
h3 { font-size: 19px; margin-bottom: 10px; }
p { color: var(--text); }
.text-muted { color: var(--muted); }

.gold-line {
  width: 64px; height: 2px; border: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 0 22px;
}

.disclosure {
  width: 100%;
  background: #F4F6FB;
  color: #4B5563;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
  padding: 8px 16px;
}
.disclosure .disclosure-key {
  background: #FDE68A;
  color: #1F2937;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-right: 8px;
}

.site-header {
  position: static;
  background-color: #0B1220;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.018) 0 2px, transparent 2px 5px);
  border-bottom: 2px solid var(--accent);
}
.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
}
.brand:hover { color: var(--text); }
.brand img {
  max-height: 36px;
  width: auto;
  display: block;
}
.brand-name {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  transition: background 0.35s ease, color 0.35s ease;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); color: var(--gold); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  padding: 8px 12px;
  cursor: pointer;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 64px 24px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.82) 0%, rgba(15,23,42,0.68) 55%, var(--bg) 100%);
}
.hero-card {
  position: relative;
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
  padding: 40px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.hero-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 14px;
}
.hero-sub { color: var(--muted); font-size: 18px; margin-top: 18px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-tags span {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
}
.hero .updated, .page-head .updated, .sub-hero .updated {
  display: block;
  margin-top: 26px;
  font-size: 13px;
  color: var(--muted);
}

.offers {
  position: relative;
  padding: 84px 0;
  background-size: cover;
  background-position: center;
}
.offers::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.94) 0%, rgba(15,23,42,0.88) 60%, rgba(15,23,42,0.96) 100%);
}
.offers .container { position: relative; z-index: 1; }
.offers-head { max-width: 720px; margin-bottom: 40px; }
.offers-head p { color: var(--muted); margin-top: 12px; }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.offer-card {
  background: linear-gradient(160deg, #17233B 0%, #121B2E 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.6s ease, border-color 0.6s ease;
}
.offer-card:hover { transform: translateY(-6px); border-color: rgba(201,162,75,0.5); }
.offer-logo {
  width: 150px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
  background: #FFFFFF;
  border-radius: 10px;
  padding: 10px;
}
.offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.offer-name { font-family: var(--serif); font-size: 22px; margin-bottom: 12px; }
.offer-bonus { font-size: 15px; font-weight: 600; color: var(--gold); line-height: 1.5; overflow-wrap: break-word; }
.offer-terms { font-size: 11px; color: var(--muted); margin-top: 6px; }
.offer-desc { font-size: 11.5px; color: var(--muted); line-height: 1.55; margin-top: 14px; margin-bottom: 20px; border-top: 1px solid var(--border); padding-top: 12px; }
.offer-cta {
  margin-top: auto;
  display: inline-block;
  padding: 12px 26px;
  border-radius: 8px;
  border: 1px solid var(--gold);
  color: #1F2937;
  background: linear-gradient(180deg, #E8C876 0%, var(--gold) 100%);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.offer-cta:hover { opacity: 0.9; transform: translateY(-2px); }

.info-block { padding: 76px 0; }
.info-block .kicker {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.info-block p { color: var(--text); margin-bottom: 16px; }
.info-block p:last-of-type { margin-bottom: 0; }
.info-lead { color: var(--muted); max-width: 860px; }

.layout-grid-2 { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: start; }
.layout-grid-2 .col-text { padding-top: 8px; }

.stat-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0,0,0,0.3);
}
.stat-tile .stat-num { font-family: var(--serif); font-size: 40px; color: var(--gold); line-height: 1; }
.stat-tile .stat-label { color: var(--muted); font-size: 13px; margin-top: 10px; letter-spacing: 0.5px; }
.stat-tile .stat-note { color: var(--muted); font-size: 12px; margin-top: 12px; border-top: 1px solid var(--border); padding-top: 10px; }

.check-list { list-style: none; }
.check-list li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 20px;
  width: 14px; height: 2px;
  background: var(--gold);
}
.check-list li strong { color: var(--gold); font-weight: 600; }

.pull-quote {
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 26px;
  margin: 26px 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.5;
  color: var(--text);
}
.pull-quote span { display: block; font-family: var(--sans); font-size: 13px; color: var(--muted); margin-top: 10px; letter-spacing: 1px; }

.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
}
.mini-card h3 { color: var(--gold); font-size: 17px; margin-bottom: 8px; }
.mini-card p { font-size: 14px; color: var(--muted); margin: 0; }

.steps-list { list-style: none; counter-reset: step; }
.steps-list li {
  counter-increment: step;
  position: relative;
  padding: 0 0 22px 58px;
}
.steps-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 2px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold);
}
.steps-list li strong { display: block; color: var(--text); font-size: 16px; margin-bottom: 4px; }
.steps-list li span { color: var(--muted); font-size: 14px; }

.quote-band {
  background: linear-gradient(135deg, rgba(99,102,241,0.16) 0%, rgba(56,189,248,0.1) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}
.quote-band span { display: block; font-family: var(--sans); font-size: 13px; color: var(--muted); margin-top: 14px; letter-spacing: 2px; text-transform: uppercase; }

.info-cta {
  display: inline-block;
  margin-top: 30px;
  font-family: var(--serif);
  font-size: 17px;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,162,75,0.5);
  padding-bottom: 4px;
  transition: border-color 0.4s ease;
}
.info-cta:hover { border-color: var(--gold); }

.decor-figure { display: flex; justify-content: center; }
.decor-clip {
  max-width: 100%;
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(201,162,75,0.35);
  box-shadow: 0 22px 50px rgba(0,0,0,0.45);
}
.decor-clip img { width: 100%; height: 100%; max-height: 320px; object-fit: cover; object-position: center; display: block; }

.split-rows { display: grid; gap: 16px; }
.split-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: baseline;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.split-row dt { color: var(--gold); font-family: var(--serif); font-size: 18px; }
.split-row dd { color: var(--muted); font-size: 14.5px; }

.info-tiles-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.info-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 22px;
}
.info-tile h3 { color: var(--gold); font-size: 16px; margin-bottom: 8px; }
.info-tile p { font-size: 14px; color: var(--muted); margin: 0; }

.rail-figure { margin: 34px 0 8px; }
.rail-figure .decor-clip { max-width: 100%; max-height: 260px; border-radius: 12px; }
.rail-figure figcaption { font-size: 12px; color: var(--muted); margin-top: 10px; letter-spacing: 0.5px; }

.page-head { padding: 64px 0 40px; }
.sub-hero {
  position: relative;
  padding: 84px 0 64px;
  overflow: hidden;
}
.sub-hero .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.sub-hero .hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.82) 60%, var(--bg) 100%); }
.sub-hero .container { position: relative; z-index: 1; max-width: 860px; }
.sub-hero .hero-sub { font-size: 17px; }
.sub-hero .updated { margin-top: 20px; }

.article-body { padding: 20px 0 70px; }
.article-narrow { max-width: 820px; }
.article-narrow p { margin-bottom: 20px; color: var(--text); }
.article-narrow h2 { margin: 44px 0 16px; }
.article-narrow h3 { margin: 30px 0 12px; color: var(--gold); }
.article-narrow ul, .article-narrow ol { margin: 0 0 20px 22px; }
.article-narrow li { margin-bottom: 8px; }
.article-narrow .text-muted { color: var(--muted); }
.article-split { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.rail-aside {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 20px;
}
.rail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
}
.rail-card h3 { font-size: 15px; color: var(--gold); margin-bottom: 10px; letter-spacing: 0.5px; }
.rail-card p, .rail-card li { font-size: 13.5px; color: var(--muted); }
.rail-card ul { list-style: none; }
.rail-card li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.rail-card li:last-child { border-bottom: 0; }
.rail-figure { max-width: 100%; max-height: 300px; overflow: hidden; border-radius: 12px; border: 1px solid var(--border); }
.rail-figure img { width: 100%; height: 100%; max-height: 300px; object-fit: cover; object-position: center; display: block; }

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin: 40px 0;
}
.stat-cell { background: #141F33; padding: 26px 18px; text-align: center; }
.stat-cell .stat-num { font-family: var(--serif); font-size: 32px; color: var(--gold); }
.stat-cell .stat-label { font-size: 12.5px; color: var(--muted); margin-top: 8px; }

.pull-band {
  margin: 44px 0;
  padding: 44px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(30,41,59,0.9), rgba(30,41,59,0.9)),
    var(--bg);
  border-top: 1px solid rgba(201,162,75,0.4);
  border-bottom: 1px solid rgba(201,162,75,0.4);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
}
.pull-band span { display: block; font-family: var(--sans); font-size: 12px; color: var(--muted); margin-top: 12px; letter-spacing: 2px; text-transform: uppercase; }

.mosaic { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; margin: 40px 0; }
.mosaic .decor-clip { max-height: 340px; }
.mosaic .mosaic-col { display: grid; grid-template-rows: 1fr 1fr; gap: 18px; }
.mosaic .mosaic-col .decor-clip { max-height: 161px; }

.legal-wrap { padding: 64px 0 80px; max-width: 860px; }
.legal-wrap h1 { margin-bottom: 18px; }
.legal-wrap h2 { margin: 38px 0 14px; }
.legal-wrap p { margin-bottom: 16px; }
.legal-wrap ul { margin: 0 0 16px 22px; }
.legal-wrap li { margin-bottom: 8px; }
.legal-wrap a { color: var(--primary); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info p { color: var(--muted); margin-bottom: 14px; }
.contact-info .info-line { margin-bottom: 12px; color: var(--text); }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
}
.contact-form label { display: block; font-size: 14px; color: var(--text); margin-bottom: 8px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  background: #0F1A2E;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  margin-bottom: 6px;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 1px solid var(--primary); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-error { color: var(--accent); font-size: 13px; margin-bottom: 10px; min-height: 18px; }
.contact-submit {
  margin-top: 14px;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: linear-gradient(180deg, #E8C876 0%, var(--gold) 100%);
  color: #1F2937;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
}
.contact-success {
  background: var(--surface);
  border: 1px solid rgba(201,162,75,0.5);
  border-radius: 14px;
  padding: 30px;
  text-align: center;
}
.contact-success p { margin-top: 8px; color: var(--muted); }

.site-footer {
  flex-shrink: 0;
  margin-top: 90px;
  background: #0A111F;
  border-top: 2px solid var(--accent);
  padding: 56px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 40px; height: auto; }
.footer-brand span { font-family: var(--serif); font-size: 20px; color: var(--gold); }
.footer-col h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text); margin-bottom: 14px; }
.footer-col p { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: var(--muted); font-size: 13.5px; }
.footer-links a:hover { color: var(--gold); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.footer-badge {
  width: 72px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 6px;
  padding: 4px;
}
.footer-badge img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.footer-legal { border-top: 1px solid var(--border); margin-top: 44px; padding-top: 24px; }
.footer-legal p { font-size: 12.5px; color: var(--muted); margin-bottom: 8px; }
.footer-legal .reqs { font-size: 12.5px; color: var(--muted); margin-top: 14px; }

.age-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,12,22,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px;
}
.age-overlay.hidden { display: none; }
.age-card {
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border: 1px solid rgba(201,162,75,0.45);
  border-radius: 16px;
  padding: 44px 38px;
  text-align: center;
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
  animation: rise 0.8s ease both;
}
@keyframes rise { from { transform: translateY(18px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.age-badge {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
}
.age-card h2 { margin-bottom: 14px; font-size: 26px; }
.age-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 26px; }
.age-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.age-btn {
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: opacity 0.4s ease;
}
.age-btn.confirm { background: linear-gradient(180deg, #E8C876 0%, var(--gold) 100%); border: 1px solid var(--gold); color: #1F2937; }
.age-btn.decline { background: transparent; border: 1px solid var(--border); color: var(--muted); }
.age-btn:hover { opacity: 0.88; }
.age-note { margin-top: 22px; font-size: 11.5px; color: var(--muted); }

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 140%);
  z-index: 80;
  width: min(680px, calc(100% - 32px));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 26px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
  transition: transform 0.7s ease;
}
.cookie-banner.active { transform: translate(-50%, 0); }
.cookie-banner h3 { font-size: 16px; margin-bottom: 8px; }
.cookie-banner p { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.cookie-banner p a { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.4s ease;
}
.cookie-btn.accept { background: linear-gradient(180deg, #E8C876 0%, var(--gold) 100%); border: 1px solid var(--gold); color: #1F2937; }
.cookie-btn.reject { background: transparent; border: 1px solid var(--border); color: var(--muted); }
.cookie-btn:hover { opacity: 0.88; }
.cookie-btn.mgr { background: transparent; border: 1px solid transparent; color: var(--muted); text-decoration: underline; font-weight: 400; }

.redirect-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.redirect-card {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.spinner {
  width: 46px; height: 46px;
  margin: 0 auto 26px;
  border-radius: 50%;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.redirect-card h1 { font-size: 24px; margin-bottom: 12px; }
.redirect-card p { color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.redirect-meta { font-size: 12px; color: var(--muted); margin-top: 20px; line-height: 1.7; }
.redirect-meta a { color: var(--primary); text-decoration: underline; }
.redirect-ad { display: inline-block; font-size: 11px; color: var(--gold); border: 1px solid rgba(201,162,75,0.5); border-radius: 4px; padding: 2px 8px; margin-bottom: 18px; letter-spacing: 1px; }
.redirect-top { font-size: 13px; margin-top: 24px; }
.redirect-top a { text-decoration: underline; }

.notfound { padding: 90px 0; text-align: center; }
.notfound .nf-code { font-family: var(--serif); font-size: 110px; color: var(--gold); line-height: 1; }
.notfound p { color: var(--muted); max-width: 520px; margin: 22px auto 30px; }
.notfound a.nf-home {
  display: inline-block;
  padding: 13px 30px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: #1F2937;
  background: linear-gradient(180deg, #E8C876 0%, var(--gold) 100%);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .offers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .layout-grid-2 { grid-template-columns: 1fr; gap: 30px; }
  .article-split { grid-template-columns: 1fr; }
  .rail-aside { position: static; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0;
    height: 100vh;
    width: 300px;
    background: #0B1220;
    border-right: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    gap: 22px;
    transform: translateX(-105%);
    transition: transform 0.45s ease;
    z-index: 70;
    box-shadow: 30px 0 80px rgba(0,0,0,0.5);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 15px; }
  .nav-toggle { display: block; position: relative; z-index: 75; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .offers-grid { grid-template-columns: 1fr; }
  .hero { min-height: 420px; padding: 40px 16px; }
  .hero-card { width: 90%; padding: 24px; }
  .hero-sub { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .mini-cards, .info-tiles-3 { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic .mosaic-col { grid-template-rows: none; }
  .mosaic .decor-clip, .mosaic .mosaic-col .decor-clip { max-height: 240px; }
  .split-row { grid-template-columns: 1fr; gap: 6px; }
  .quote-band, .pull-band { padding: 28px 22px; font-size: 19px; }
  .navbar { padding: 16px 20px; min-height: 72px; }
  .age-card { padding: 34px 24px; }
  .disclosure { font-size: 11px; }
}
