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

/* ── Skip link ────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--bg, #0e0b1c);
  color: #c8a84c;
  color: var(--gold);
  font-family: 'Cinzel', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid #c8a84c;
  border-color: var(--gold);
  border-radius: 0 0 8px 0;
  text-decoration: none;
  outline: none;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #c8a84c;
  outline-color: var(--gold);
  outline-offset: 2px;
}

:root {
  --bg:          #0e0b1c;
  --bg2:         #141125;
  --surface:     rgba(21, 17, 34, 0.85);
  --surface2:    #1e1935;
  --border:      #30284e;
  --border-soft: #2c2747;
  --gold:        #c8a84c;
  --gold-dim:    #8c7230;
  --rose:        #d05f79;
  --teal:        #35a39a;
  --text:        #ede9df;
  --text-dim:    #9b9aa8;
  --text-muted:  #706e7d;
  --radius:      20px;
  --max-w:       1440px;
  --font-h:      'Cinzel', Georgia, serif;
  --font-b:      'Lora', Georgia, serif;
}
@supports (color: oklch(0% 0 0)) {
  :root {
    --bg:          oklch(9% 0.07 270);
    --bg2:         oklch(12% 0.08 275);
    --surface:     oklch(14% 0.07 272 / 0.85);
    --surface2:    oklch(18% 0.07 272);
    --border:      oklch(30% 0.08 272);
    --border-soft: oklch(28% 0.07 272);
    --gold:        oklch(72% 0.14 78);
    --gold-dim:    oklch(52% 0.10 78);
    --rose:        oklch(66% 0.14 352);
    --teal:        oklch(62% 0.12 190);
    --text:        oklch(94% 0.015 82);
    --text-dim:    oklch(68% 0.02 272);
    --text-muted:  oklch(50% 0.03 272);
  }
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}
.skip-link,
.nav-links a,
.footer-links a,
.back-link,
a.zcard { text-decoration: none; color: inherit; }

/* ── Focus styles ─────────────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Background nebula ────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(38, 22, 74, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 70%, rgba(46, 18, 62, 0.30) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 90%, rgba(22, 22, 56, 0.25) 0%, transparent 50%);
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, oklch(25% 0.14 280 / 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 70%, oklch(22% 0.12 310 / 0.30) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 90%, oklch(20% 0.10 250 / 0.25) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ── Star field ───────────────────────────────────────────────── */
.star-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.star {
  position: absolute;
  border-radius: 50%;
  background: #f0ede7;
  background: oklch(95% 0.01 82);
  animation: twinkle var(--dur, 4s) ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: var(--base-op, 0.4); transform: scale(1); }
  50%       { opacity: 0.08; transform: scale(0.6); }
}

/* ── App shell ────────────────────────────────────────────────── */
.app { position: relative; z-index: 1; }

/* ── Nav ──────────────────────────────────────────────────────── */
.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 60px);
  border-bottom: 1px solid var(--border-soft);
  background: rgba(14, 11, 28, 0.88);
  background: oklch(9% 0.07 270 / 0.88);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: 100%;
}
.nav-logo {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
a.nav-logo {
  text-decoration: none;
}
a.nav-logo:hover {
  color: var(--gold);
  opacity: 0.88;
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
@media (max-width: 600px) {
  .topnav { padding: 16px 20px; flex-wrap: wrap; gap: 8px; }
  .nav-links { gap: 20px; }
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 520px;
}
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { min-width: 0; }
  .hero-visual { display: flex; justify-content: center; }
}
.hero-eyebrow {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--gold-dim);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(28px, 9vw, 128px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(145deg, var(--text) 30%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}
.hero-week {
  font-family: var(--font-b);
  font-size: clamp(14px, 1.8vw, 18px);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero-intro {
  color: var(--text-dim);
  font-size: clamp(13px, 1.5vw, 15.5px);
  line-height: 1.9;
  font-weight: 400;
  font-style: italic;
  text-wrap: pretty;
  max-width: min(480px, 90vw);
}
@media (max-width: 860px) {
  .hero-intro {
    max-width: 100%;
    font-size: clamp(10px, 3.5vw, 13px);
  }
}

/* ── Celestial Wheel ──────────────────────────────────────────── */
.wheel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.wheel-svg {
  width: min(420px, 100%);
  height: auto;
  animation: slowSpin 120s linear infinite;
  filter: drop-shadow(0 0 40px rgba(200, 168, 76, 0.15));
  filter: drop-shadow(0 0 40px oklch(72% 0.14 78 / 0.15));
}
@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Emblem SVG ───────────────────────────────────────────────── */
.emblem-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 12px var(--accent, oklch(72% 0.14 78)));
}

/* ── Bento grid ───────────────────────────────────────────────── */
.grid-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px) 88px;
}
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}
@media (max-width: 720px) { .bento { grid-template-columns: 1fr; grid-auto-rows: auto; } }

/* ── Zodiac card ──────────────────────────────────────────────── */
.zcard {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--accent, var(--gold-dim));
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  position: relative;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.zcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(7, 5, 14, 0.6), 0 0 0 1px var(--accent, var(--gold-dim));
  box-shadow: 0 12px 48px oklch(5% 0.05 270 / 0.6), 0 0 0 1px var(--accent, var(--gold-dim));
  border-color: var(--accent, var(--gold-dim));
}
.zcard-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 15% 50%, var(--accent, var(--gold)) 0%, transparent 65%);
  mix-blend-mode: screen;
  filter: blur(32px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

/* ── Emblem column ────────────────────────────────────────────── */
.zcard-emblem {
  flex-shrink: 0;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 12px 24px 20px;
  background: rgba(16, 12, 26, 0.5);
  background: oklch(11% 0.07 272 / 0.5);
  border-right: 1px solid var(--border-soft);
}
.zcard-emblem svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 8px var(--accent, oklch(72% 0.14 78)));
}
@media (max-width: 480px) {
  .zcard { flex-direction: column; border-left: 1px solid var(--border-soft); border-top: 3px solid var(--accent, var(--gold-dim)); }
  .zcard-emblem {
    width: 100%;
    padding: 20px 24px 16px;
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
  }
  .zcard-emblem svg { width: 100px; }
}
.zcard-content {
  flex: 1;
  padding: 24px 28px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.zcard-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.zcard-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-h);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.meta-sep { opacity: 0.4; }
.meta-element { color: var(--accent, var(--gold-dim)); }
.zcard-dates {
  font-family: var(--font-b);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-style: italic;
}
.zcard-name {
  font-family: var(--font-h);
  font-size: var(--card-name-size, 36px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
}
.zcard-rule { margin-bottom: 14px; }
.zcard-rule span {
  display: block;
  width: 32px;
  height: 2px;
  border-radius: 1px;
  opacity: 0.7;
}
.zcard-text {
  font-family: var(--font-b);
  font-size: var(--card-text-size, 14px);
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.78;
  text-wrap: pretty;
}

/* ── Ad card ──────────────────────────────────────────────────── */
.adcard {
  background: rgba(16, 14, 24, 0.7);
  background: oklch(11% 0.04 272 / 0.7);
  border: 1px dashed var(--border-soft);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  min-height: 160px;
  backdrop-filter: blur(8px);
}
.adcard-label {
  font-family: var(--font-h);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3px 10px;
}
.adcard-icon { font-size: 24px; color: var(--text-muted); opacity: 0.3; }
.adcard-title { font-family: var(--font-b); font-size: 14px; color: var(--text-muted); font-style: italic; }
.adcard-sub { font-size: 11px; color: var(--text-muted); opacity: 0.45; font-family: monospace; }

/* ── Disclaimer ───────────────────────────────────────────────── */
.disclaimer {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 24px 72px;
  text-align: center;
}
.disclaimer p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.9;
  font-style: italic;
  font-family: var(--font-b);
}

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border-soft);
  background: rgba(11, 8, 20, 0.9);
  background: oklch(8% 0.06 270 / 0.9);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--font-h);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── Sign detail page ─────────────────────────────────────────── */
.sign-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 4vw, 64px) 88px;
}
.sign-detail-nav {
  margin-bottom: 40px;
}
.back-link {
  font-family: var(--font-h);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  transition: color 0.2s;
}
.back-link:hover { color: var(--gold); }
.sign-detail-heading {
  margin-bottom: 32px;
}
.sign-detail-week {
  font-family: var(--font-b);
  font-size: clamp(13px, 1.6vw, 16px);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ── Featured card (sign detail) ──────────────────────────────── */
.zcard--featured {
  cursor: default;
}
.zcard--featured .zcard-emblem {
  width: 200px;
  padding: 36px 20px;
}
.zcard--featured .zcard-content {
  padding: 36px 40px 36px 32px;
}
.zcard--featured .zcard-name {
  font-size: clamp(40px, 6vw, 68px);
  margin-bottom: 16px;
}
.zcard--featured .zcard-text {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.9;
}
@media (max-width: 600px) {
  .zcard--featured {
    flex-direction: column;
    border-left: 1px solid var(--border-soft);
    border-top: 3px solid var(--accent, var(--gold-dim));
  }
  .zcard--featured .zcard-emblem {
    width: 100%;
    padding: 28px 32px 20px;
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
  }
  .zcard--featured .zcard-emblem svg { width: 120px; }
  .zcard--featured .zcard-content {
    padding: 24px 24px 28px;
  }
  .zcard--featured .zcard-name {
    font-size: clamp(32px, 9vw, 48px);
  }
}

/* ── Share button ─────────────────────────────────────────────── */
.share-wrap {
  display: flex;
  justify-content: center;
  margin: 12px auto 32px;
  max-width: 900px;
  padding: 0 24px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-family: var(--font-h);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.share-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 168, 76, 0.07);
  background: oklch(72% 0.14 78 / 0.07);
}
.share-btn--copied {
  border-color: #4cac62;
  border-color: oklch(68% 0.16 152);
  color: #4cac62;
  color: oklch(68% 0.16 152);
  background: rgba(76, 172, 98, 0.07);
  background: oklch(68% 0.16 152 / 0.07);
  cursor: default;
}
.share-icon { font-size: 16px; line-height: 1; }

/* ── Page ads (below individual sign pages) ───────────────────── */
.page-ads {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.page-ads-inner {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
@media (max-width: 600px) {
  .share-wrap { margin-bottom: 24px; }
  .page-ads { margin-bottom: 28px; padding: 0 16px; }
}

/* ── Legal pages ──────────────────────────────────────────────── */
.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
}
.legal-title {
  font-family: var(--font-h);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.1;
  margin: 16px 0 12px;
}
.legal-updated {
  font-family: var(--font-b);
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
}
.legal-section {
  margin-bottom: 44px;
}
.legal-section h2 {
  font-family: var(--font-h);
  font-size: clamp(12px, 1.8vw, 16px);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
}
.legal-section p {
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 14px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  list-style: none;
  margin: 12px 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-section li {
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.78;
  padding-left: 20px;
  position: relative;
}
.legal-section li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
}
.legal-section address {
  font-style: normal;
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--text-dim);
  line-height: 2;
  padding: 20px 24px;
  background: rgba(21, 17, 34, 0.5);
  background: oklch(14% 0.07 272 / 0.5);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--gold-dim);
  border-radius: 8px;
  margin-top: 12px;
}
.legal-section a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(200, 168, 76, 0.4);
  text-decoration-color: oklch(72% 0.14 78 / 0.4);
}
.legal-section a:hover {
  color: var(--text);
  text-decoration-color: rgba(237, 233, 223, 0.4);
  text-decoration-color: oklch(94% 0.015 82 / 0.4);
}
.legal-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  margin: 16px 0 20px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
}
.legal-table th {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(16, 12, 26, 0.5);
  background: oklch(11% 0.06 272 / 0.5);
  white-space: nowrap;
}
.legal-table td {
  padding: 12px 16px;
  font-family: var(--font-b);
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.65;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table code {
  font-family: monospace;
  font-size: 12.5px;
  color: var(--gold-dim);
  background: rgba(16, 12, 26, 0.5);
  background: oklch(11% 0.06 272 / 0.5);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ── Forced colours (Windows High Contrast / forced-colors) ──── */
@media (forced-colors: active) {
  .hero-title {
    -webkit-text-fill-color: unset;
    background: none;
    color: CanvasText;
  }
}

/* ── Reduced motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .wheel-svg    { animation: none; }
  .star         { animation: none; }
  .zcard        { transition: none; }
  .zcard:hover  { transform: none; }
  .zcard-glow   { transition: none; }
}

/* ── Screen-reader-only utility ───────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Cookie consent banner ────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(21, 17, 34, 0.97);
  background: oklch(14% 0.07 272 / 0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text {
  flex: 1;
  font-family: var(--font-b);
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.65;
  min-width: 200px;
}
.cookie-banner-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover { color: var(--text); }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 8px 18px;
  border-radius: 6px;
  font-family: var(--font-h);
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}
.cookie-btn--accept {
  background: var(--gold);
  color: var(--bg);
}
.cookie-btn--accept:hover {
  background: var(--text);
}
.cookie-btn--decline {
  background: transparent;
  border-color: var(--border);
  color: var(--text-muted);
}
.cookie-btn--decline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
@media (max-width: 540px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── Scrollbar ────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── Znamenia overview page ───────────────────────────────────── */
.znamenia-intro {
  font-family: var(--font-b);
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-dim);
  line-height: 1.9;
  margin-bottom: 12px;
  font-style: italic;
}
.znamenia-intro + .znamenia-intro { margin-bottom: 44px; }
.znamenia-section-title {
  font-family: var(--font-h);
  font-size: clamp(12px, 1.8vw, 16px);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
}
.znamenia-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
@media (max-width: 680px) {
  .znamenia-grid { grid-template-columns: 1fr; }
}
.znamenia-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--accent, var(--gold-dim));
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.znamenia-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(7, 5, 14, 0.5), 0 0 0 1px var(--accent, var(--gold-dim));
  box-shadow: 0 8px 32px oklch(5% 0.05 270 / 0.5), 0 0 0 1px var(--accent, var(--gold-dim));
}
.znamenia-card-name {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.znamenia-card-meta {
  font-family: var(--font-h);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.znamenia-card-text {
  font-family: var(--font-b);
  font-size: 14px;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.78;
  flex: 1;
  margin-top: 4px;
}
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s, gap 0.2s;
}
.cta-link:hover { color: var(--text); gap: 10px; }

/* ── Znamenia detail page ─────────────────────────────────────── */
.znamenia-detail-header {
  margin-bottom: 44px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-soft);
}
.znamenia-detail-intro {
  font-family: var(--font-b);
  font-size: clamp(15px, 1.6vw, 17px);
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.85;
  margin-top: 20px;
}
.znamenia-key-facts {
  background: rgba(21, 17, 34, 0.5);
  background: oklch(14% 0.07 272 / 0.5);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--accent, var(--gold-dim));
  border-radius: 12px;
  padding: 22px 28px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.znamenia-key-facts dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 6px 20px;
}
.znamenia-key-facts dt {
  font-family: var(--font-h);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  padding-top: 2px;
}
.znamenia-key-facts dd {
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 480px) {
  .znamenia-key-facts dl { grid-template-columns: 1fr; gap: 2px; }
  .znamenia-key-facts dt { margin-top: 8px; }
  .znamenia-key-facts dt:first-child { margin-top: 0; }
}
.znamenia-summary {
  background: rgba(200, 168, 76, 0.06);
  background: oklch(72% 0.14 78 / 0.06);
  border: 1px solid rgba(200, 168, 76, 0.2);
  border-color: oklch(72% 0.14 78 / 0.2);
  border-radius: 12px;
  padding: 24px 28px;
  font-family: var(--font-b);
  font-size: 15px;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.85;
}
.znamenia-horoscope-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid rgba(200, 168, 76, 0.3);
  border-color: oklch(72% 0.14 78 / 0.3);
  border-radius: 8px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.znamenia-horoscope-link:hover {
  color: var(--text);
  border-color: var(--gold);
  background: rgba(200, 168, 76, 0.07);
  background: oklch(72% 0.14 78 / 0.07);
}
.sign-links-section {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}
.sign-links-title {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.sign-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sign-link-pill {
  font-family: var(--font-h);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 7px 16px;
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.sign-link-pill:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
  background: rgba(200, 168, 76, 0.06);
  background: oklch(72% 0.14 78 / 0.06);
}
.sign-link-pill--current {
  color: var(--gold);
  border-color: var(--gold-dim);
  background: rgba(200, 168, 76, 0.08);
  background: oklch(72% 0.14 78 / 0.08);
  cursor: default;
}
@media (prefers-reduced-motion: reduce) {
  .znamenia-card { transition: none; }
  .znamenia-card:hover { transform: none; }
}
