/* The Sheline Codex — ARG / Cult Neocities Theme */
body {
  background-color: #090710;
  color: #c8b8a8;
  font-family: 'Special Elite', cursive; /* Mimics typewriter/ritual script */
  line-height: 1.7;
  margin: 0;
  padding: 0;
  background-image: url('noise.png'); /* Optional: subtle grain texture */
  background-repeat: repeat;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 25px;
  position: relative;
}

header {
  text-align: center;
  margin-bottom: 35px;
  border-bottom: 1px dashed #4a3a5a;
  padding-bottom: 20px;
}

h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.6rem;
  letter-spacing: 3px;
  color: #b08ca8;
  text-shadow: 0 0 8px rgba(140, 90, 130, 0.4);
  margin: 0;
}

.subtitle {
  font-style: italic;
  color: #8a7d70;
  margin-top: 10px;
  font-size: 1.1rem;
}

nav ul {
  list-style: none;
  padding: 0;
  text-align: center;
  margin-bottom: 30px;
}

nav li {
  display: inline-block;
  margin: 0 10px;
}

nav a {
  color: #a080a5;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  letter-spacing: 1px;
  transition: all 0.3s;
}

nav a:hover {
  color: #d9b8d0;
  text-shadow: 0 0 6px rgba(200, 150, 200, 0.5);
}

section {
  margin-bottom: 40px;
  padding: 15px 0;
  border-left: 2px solid #3a2e45;
  padding-left: 20px;
}

h2 {
  font-family: 'Cinzel', serif;
  color: #c29fbf;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

blockquote {
  font-style: italic;
  color: #e0c9d9;
  border-left: 1px solid #5a4565;
  padding-left: 15px;
  margin: 15px 0;
}

.glyph-grid {
  display: flex;
  gap: 20px;
  margin: 15px 0;
  flex-wrap: wrap;
}

.glyph {
  width: 80px;
  height: 80px;
  background: #1a1522;
  border: 1px solid #403048;
  object-fit: contain;
  padding: 5px;
}

code {
  background: #120f18;
  padding: 2px 6px;
  border-radius: 3px;
  color: #b8a0c0;
}

a {
  color: #b890b0;
  text-decoration: underline dotted #5a4060;
}

a:hover {
  color: #e8c8e0;
}

footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px dashed #4a3a5a;
  color: #7a6d60;
  font-size: 0.9rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
}