body {
  font-family: 'Special Elite', monospace;
  background-color: #111;
  color: #ddd;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: #89f;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

header.glitch-header {
  background: #000;
  padding: 2rem 1rem;
  text-align: center;
  border-bottom: 1px solid #222;
}
header img {
  max-width: 220px;
  height: auto;
}
.subtext {
  font-size: 0.95rem;
  color: #888;
}

main {
  padding: 2rem 1rem;
  max-width: 720px;
  margin: auto;
}

h1, h2, h3 {
  font-weight: bold;
  color: #fff;
}

ul {
  padding-left: 1rem;
}
ul li {
  margin-bottom: 1rem;
}

section.manifesto {
  margin-bottom: 2.5rem;
}

section.cta {
  text-align: center;
  margin: 2rem 0;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.95rem;
}

footer {
  background: #000;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
  border-top: 1px solid #222;
}
footer nav {
  margin-bottom: 1rem;
}
footer a {
  color: #999;
}
footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #555;
}

.share-buttons {
  margin-top: 2rem;
  text-align: center;
}
.share-buttons button {
  background: #222;
  color: #ccc;
  border: 1px solid #333;
  padding: 0.6rem 1rem;
  margin: 0.3rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease;
}
.share-buttons button:hover {
  background: #333;
  color: #fff;
}

.modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.85);
}
.modal-content {
  background-color: #181818;
  margin: 10% auto;
  padding: 1rem 2rem;
  border: 1px solid #444;
  width: 90%;
  max-width: 500px;
  text-align: center;
  color: #ccc;
}
.modal-content button {
  margin-top: 1rem;
  background: none;
  border: 1px solid #555;
  padding: 0.4rem 0.8rem;
  color: #aaa;
  cursor: pointer;
}
.modal-content button:hover {
  color: #fff;
  border-color: #888;
}

.glitch-text {
  position: relative;
  display: inline-block;
  font-weight: bold;
  color: white;
  text-shadow:
    1px 0 red,
    -1px 0 cyan,
    0 1px lime,
    0 -1px magenta;
  animation: glitch 1.4s infinite;
}

@keyframes glitch {
  0% { text-shadow: 1px 0 red, -1px 0 cyan; transform: translate(0); }
  20% { text-shadow: -2px 0 red, 2px 0 cyan; transform: translate(0.5px, -0.5px); }
  40% { text-shadow: 2px 0 lime, -2px 0 magenta; transform: translate(-0.5px, 0.5px); }
  60% { text-shadow: -1px 0 red, 1px 0 cyan; transform: translate(0); }
  80% { text-shadow: 1px 1px magenta, -1px -1px lime; transform: translate(-0.5px, 0.2px); }
  100% { text-shadow: 1px 0 red, -1px 0 cyan; transform: translate(0); }
}

.easter-eggs {
  margin-top: 1.25em;
  font-size: 0.9rem;
  opacity: 0.7;
  text-align: center;
}
.easter-eggs a {
  color: #c0c0c0;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.easter-eggs a:hover {
  color: white;
  text-decoration: underline;
  opacity: 1;
}

.lab-box {
  background-color: #181818;
  border: 1px solid #333;
  border-left: 4px solid lime;
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 0 10px rgba(0,255,0,0.1);
  font-size: 0.95rem;
  line-height: 1.6;
}

.lab-box h3 {
  margin-top: 0;
  color: #b6fcb6;
  font-size: 1.1rem;
}

.lab-box button {
  background-color: #222;
  border: 1px solid #444;
  padding: 0.5rem 1rem;
  color: #ccc;
  font-family: inherit;
  cursor: pointer;
  margin-top: 0.75rem;
  transition: background 0.2s ease;
}

.lab-box button:hover {
  background-color: #333;
  color: white;
}
