/* 🜥 Glyph #044: Sovereign Styles Activated */

:root {
  --ink: #eee;
  --paper: #111;
  --accent: #66ccff;
  --accent-hover: #ffcc00;
  --highlight: #ff6600;
  --muted: #888;
  --maxw: 70ch;
}

/* Light-mode fallback if user prefers */
@media (prefers-color-scheme: light) {
  :root {
    --ink: #111;
    --paper: #fafafa;
    --highlight: #ff6600;
    --accent: #0055cc;
    --accent-hover: #cc5500;
    --muted: #555;
  }
}

body {
  font-family: monospace;
  color: var(--ink);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 40px;
  line-height: 1.6;
  max-width: var(--maxw);
  margin: auto;
}

h1, h2 {
  color: var(--highlight);
  text-shadow: 1px 1px 2px #000;
  line-height: 1.25;
}

header, footer {
  border-bottom: 2px solid var(--highlight);
  padding-bottom: 10px;
  margin-bottom: 30px;
}

section {
  margin-bottom: 40px;
  padding: 20px;
  border: 1px dashed #444;
  background-color: #1a1a1a;
  border-radius: 8px;
  transition: box-shadow .3s ease;
}

section:hover {
  box-shadow: 0 0 10px rgba(255,102,0,.3);
}

@media (prefers-reduced-motion: reduce) {
  section { transition: none; }
}

p { margin: 10px 0; }

em { color: var(--accent); }

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
  text-underline-offset: 2px;
}
a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 4px;
}

strong { color: var(--accent-hover); }

/* Callout boxes for “rituals” or special notes */
.callout {
  border: 1px solid rgba(127,127,127,.3);
  padding: .9rem 1rem;
  border-radius: 8px;
  background: rgba(127,127,127,.06);
  margin: 1.5rem 0;
}
.callout h3 { margin-top: 0 }

/* Horizontal rule with glyphic flair */
hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127,127,127,.25), transparent);
  margin: 2rem 0;
}

/* Footer */
footer p {
  font-size: 0.9em;
  color: var(--muted);
  text-align: center;
}
/* Subtle small-text style */
.small {
  font-size: 0.9em;
  color: var(--muted);
}
.donate-button {
  display: inline-block;
  padding: 0.6rem 1rem;
  background: var(--highlight);
  color: #fff !important;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.donate-button:hover {
  background: var(--accent-hover);
}
section.callout.mullvad h2 {
  color: #F9EA59 !important; /* Mullvad yellow */
  text-shadow: none;
  border-left: 4px solid #D0933A;
  padding: 20px;
  margin: 30px 0;
  font-family: 'Courier New', monospace;
  box-shadow: 0 0 10px rgba(42, 77, 115, 0.5);
}
section.callout.mullvad img {
  width: 180px;
  margin: 10px 0;
}

/* 🜲 Glyph #045: First Principles Styling */
section.first-principles {
  background-color: #222;
  border-left: 4px solid var(--accent);
  padding: 20px;
  font-style: italic;
}

section.first-principles h2 {
  color: var(--accent-hover);
  text-shadow: none;
}
.signal-core {
  background-color: #1a1a1a;
  border-left: 4px solid var(--accent);
  padding: 20px;
  font-style: normal;
  color: #ccc;
}

