@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

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

:root {
  --bg:        #f2ede4;
  --bg2:       #ece5d8;
  --bg3:       #e6deca;
  --gold:      #8b6914;
  --gold-light:#a07c18;
  --gold-dim:  #6b5010;
  --text:      #3d2c0e;
  --text-muted:#5c4a2e;
  --red:       #8b2020;
  --border:    rgba(139,105,20,0.25);
  --radius:    6px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.125rem;
  line-height: 1.75;
  min-height: 100vh;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242,237,228,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}
.site-header .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 58px;
  gap: 1rem;
}
.site-logo {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .04em;
  white-space: nowrap;
  justify-self: start;
}
.site-logo span { color: var(--text-muted); font-weight: 400; font-size: .82rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  justify-self: center;
}
.site-nav a {
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .07em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--gold); }

.header-cta {
  background: var(--gold);
  color: #f2ede4;
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  font-weight: 700;
  padding: .4rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: .05em;
  white-space: nowrap;
  transition: background .2s;
  justify-self: end;
}
.header-cta:hover { background: var(--gold-light); }

@media (max-width: 680px) {
  .site-header .inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    height: auto;
    padding: .6rem 0;
    gap: .5rem;
  }
  .site-logo { grid-column: 1; grid-row: 1; }
  .header-cta { grid-column: 2; grid-row: 1; justify-self: end; }
  .site-nav { grid-column: 1 / -1; grid-row: 2; justify-self: start; gap: 1.1rem; }
  .site-nav a { font-size: .72rem; }
}

/* ── LAYOUT ── */
.container { max-width: 820px; margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(139,105,20,0.08) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
}
.rune-symbol {
  font-size: clamp(5rem, 15vw, 9rem);
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 1.25rem;
  font-family: 'Cinzel', serif;
}
.hero-badge {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border: 1px solid var(--border);
  padding: .3rem .9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: .75rem;
  letter-spacing: .02em;
}
.hero-essence {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-style: italic;
  max-width: 540px;
  margin: 0 auto;
}

/* home hero */
.hero-home {
  padding: 6rem 1.5rem 5rem;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139,105,20,0.08) 0%, transparent 65%);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hero-home .rune-row {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--gold-dim);
  letter-spacing: .2em;
  margin-bottom: 2rem;
  opacity: .7;
}
.hero-home h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: .02em;
}
.hero-home p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-style: italic;
}
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #f2ede4;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  padding: .85rem 2.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  letter-spacing: .06em;
  padding: .8rem 1.8rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .2s, color .2s;
  margin-left: 1rem;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── FACT BOX ── */
.factbox {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
}
.factbox-item { text-align: center; }
.factbox-label {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: block;
  margin-bottom: .3rem;
}
.factbox-value {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}

/* ── CONTENT SECTIONS ── */
.section { padding: 3.5rem 0; border-bottom: 1px solid rgba(139,105,20,0.1); }
.section:last-of-type { border-bottom: none; }

.section-label {
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: block;
  margin-bottom: .6rem;
}
.section h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.section h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin: 2rem 0 .75rem;
}
.section p { margin-bottom: 1.1rem; color: var(--text-muted); }
.section p:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

.quote-block {
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  background: var(--bg2);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-block blockquote {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: .5rem;
}
.quote-block cite {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--gold-dim);
}

/* ── PRACTICE CARDS ── */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.practice-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.practice-card .pc-icon { font-size: 1.5rem; margin-bottom: .6rem; display: block; }
.practice-card h4 {
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  color: var(--gold);
  margin-bottom: .5rem;
  letter-spacing: .05em;
}
.practice-card p { font-size: .95rem; color: var(--text-muted); margin: 0; }

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--text);
  border: 1px solid var(--gold-dim);
  border-radius: 10px;
  padding: 3rem 2.5rem;
  margin: 3.5rem 0;
  text-align: center;
}
.cta-block .cta-rune {
  font-size: 3rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
  font-family: 'Cinzel', serif;
}
.cta-block h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--gold);
  margin-bottom: 1rem;
}
.cta-block p { color: #c8b89a; max-width: 520px; margin: 0 auto 2rem; }

/* ── FAQ ── */
.faq-list { margin-top: 1.5rem; }
.faq-item {
  border-bottom: 1px solid rgba(139,105,20,0.12);
  padding: 1.25rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: .6rem;
  font-weight: 600;
}
.faq-a { color: var(--text-muted); font-size: 1rem; }

/* ── RUNE NAVIGATION ── */
.rune-nav {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 1.5rem;
  margin: 0;
}
.rune-nav-inner { max-width: 1100px; margin: 0 auto; }
.rune-nav h3 {
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-align: center;
  margin-bottom: 1.25rem;
}
.rune-nav-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}
.rune-nav-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding: .6rem .8rem;
  border: 1px solid rgba(139,105,20,0.2);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .2s, background .2s;
  min-width: 60px;
  color: inherit;
}
.rune-nav-grid a:hover { border-color: var(--gold); background: rgba(139,105,20,0.07); }
.rune-nav-grid a.active { border-color: var(--gold); background: rgba(139,105,20,0.1); }
.rune-nav-grid a .nav-symbol { font-size: 1.4rem; color: var(--gold); }
.rune-nav-grid a .nav-name { font-size: .65rem; color: var(--text-muted); font-family: 'Cinzel', serif; letter-spacing: .05em; }

/* ── OVERVIEW GRID ── */
.rune-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
  padding: 3rem 0;
}
.rune-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1rem;
  text-align: center;
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .15s;
  display: block;
  color: inherit;
}
.rune-card:hover { border-color: var(--gold); background: var(--bg3); transform: translateY(-2px); }
.rune-card .card-symbol { font-size: 2.8rem; color: var(--gold); display: block; margin-bottom: .5rem; }
.rune-card .card-name { font-family: 'Cinzel', serif; font-size: .95rem; color: var(--text); font-weight: 600; display: block; margin-bottom: .25rem; }
.rune-card .card-essence { font-size: .82rem; color: var(--text-muted); font-style: italic; }
.aett-label {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border-bottom: 1px solid var(--border);
  padding-bottom: .75rem;
  margin: 2.5rem 0 1rem;
  grid-column: 1 / -1;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: .75rem 0;
  font-size: .85rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 .4rem; }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 2rem;
  margin-top: 4rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: .5rem;
  font-weight: 700;
}
.footer-tagline { color: var(--text-muted); font-style: italic; font-size: .95rem; margin-bottom: 1.5rem; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: var(--text-muted); font-size: .8rem; opacity: .6; }

/* ── PREV/NEXT ── */
.prevnext {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}
.prevnext a {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .2s, background .2s;
  background: var(--bg2);
  color: inherit;
}
.prevnext a:hover { border-color: var(--gold); background: var(--bg3); }
.prevnext a:last-child { justify-content: flex-end; text-align: right; }
.prevnext .pn-symbol { font-size: 1.8rem; color: var(--gold); }
.prevnext .pn-label { font-family: 'Cinzel', serif; font-size: .65rem; letter-spacing: .12em; color: var(--gold-dim); text-transform: uppercase; display: block; }
.prevnext .pn-name { font-family: 'Cinzel', serif; font-size: .95rem; color: var(--text); }

/* ── INTRO SECTION (home) ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0;
  align-items: start;
}
@media (max-width: 640px) { .intro-grid { grid-template-columns: 1fr; } }
.intro-grid h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .factbox { grid-template-columns: repeat(2, 1fr); }
  .practice-grid { grid-template-columns: 1fr; }
  .prevnext { flex-direction: column; }
  .hero { padding: 3rem 1rem 2.5rem; }
  .cta-block { padding: 2rem 1.25rem; }
}

/* ── UTILITY ── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }


/* ════════════════════════════════════════
   ENHANCEMENTS – Ruf des Wolfes TEST
   ════════════════════════════════════════ */

/* ── Parchment Texture ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ── Header scrolled ── */
.site-header.scrolled,
.site-header-odin.scrolled {
  background: rgba(242,237,228,0.75);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(139,105,20,0.12);
}

/* ── Rune Cards 3D Perspective ── */
.rune-overview-grid {
  perspective: 1000px;
}
.rune-card {
  transform-style: preserve-3d;
  transition: box-shadow 0.3s;
  will-change: transform;
}
.rune-card:hover {
  box-shadow: 0 12px 32px rgba(139,105,20,0.22);
}

/* ── Ornament Divider ── */
.ornament-divider {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  opacity: 0.55;
  user-select: none;
}
.ornament-divider span {
  display: inline-block;
  font-family: 'Cinzel', serif;
}

/* ── Drop Cap ── */
.drop-cap::first-letter {
  float: left;
  font-family: 'Cinzel', serif;
  font-size: 4.2em;
  line-height: 0.75;
  margin: 0.05em 0.1em 0 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── Back-to-Top Button ── */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: #f2ede4;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(139,105,20,0.3);
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover { background: var(--gold-light); }

/* ── Hamburger Button ── */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  z-index: 200;
}
#hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
#hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Particle Canvas ── */
#particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-home { position: relative; }
.hero-home .container { position: relative; z-index: 1; }

/* ── Watermark Rune (per Seite via data-rune) ── */
main::before {
  content: attr(data-watermark);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cinzel', serif;
  font-size: clamp(18rem, 40vw, 32rem);
  color: var(--gold);
  opacity: 0.025;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  line-height: 1;
}

/* ── Footer 3-Spalten ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem 2rem;
  margin-top: 4rem;
}
.footer-rune-symbol {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 2rem;
  letter-spacing: 0.2em;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-col a {
  font-size: 0.92rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col-center {
  text-align: center;
  align-items: center;
}
.footer-col-center .footer-logo {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.footer-col-center .footer-tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-copy {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Mobile Hamburger ── */
@media (max-width: 680px) {
  #hamburger { display: flex; }
  .site-nav, .site-nav-odin {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(242,237,228,0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.9rem;
    backdrop-filter: blur(12px);
  }
  .site-nav.mobile-open, .site-nav-odin.mobile-open {
    display: flex;
  }
  .site-header .inner, .site-header-odin .inner {
    position: relative;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-col-center { order: -1; }
}


/* ════════════════════════════════════════
   LADESCREEN
   ════════════════════════════════════════ */
#rune-loader {
  position: fixed;
  inset: 0;
  background: #0d0b08;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rl-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  user-select: none;
}
.rl-ring {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid rgba(212,165,32,0.25);
  box-shadow: 0 0 40px rgba(212,165,32,0.12), inset 0 0 40px rgba(212,165,32,0.06);
  position: absolute;
}
.rl-rune {
  font-family: 'Cinzel', serif;
  font-size: 5rem;
  color: #d4a520;
  text-shadow: 0 0 30px rgba(212,165,32,0.5);
  line-height: 1;
  position: relative;
  z-index: 1;
}
.rl-text {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: rgba(212,165,32,0.75);
  text-transform: uppercase;
}
.rl-bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(212,165,32,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.rl-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #8b6914, #d4a520, #8b6914);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(212,165,32,0.5);
}

/* ════════════════════════════════════════
   AURORA
   ════════════════════════════════════════ */
#aurora-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }
#aurora-bg,
#rune-loader,
#back-to-top { z-index: revert; }
#rune-loader  { z-index: 99999; }
#back-to-top  { z-index: 500; }
