body {
  background-color: #0e0011;
  color: #f7eaff;
  font-family: 'Georgia', serif;
  margin: 0;
  padding: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-shadow: 0 0 1px #ff2bb3, 0 0 2px #26ffe6;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0.015) 1px,
    transparent 1px,
    transparent 2px
  );
  z-index: 10;
}

h1 {
  font-family: 'Chakra Petch', 'Helvetica Neue', sans-serif;
  color: #ff2bb3;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 3px #ff2bb3, 0 0 5px #a95eff;
  animation: pulseGlow 3s infinite ease-in-out;
}

h2 {
  font-family: 'Chakra Petch', 'Courier New', monospace;
  letter-spacing: 1.5px;
  font-style: italic;
}

.post {
  margin-bottom: 3rem;
  border-top: 1px solid #3a003f;
  padding-top: 2rem;
  background: rgba(84, 35, 130, 0.15);
  border-radius: 8px;
  padding-left: 1rem;
  padding-right: 1rem;
  box-shadow: 0 0 6px rgba(255, 47, 186, 0.2);
}

.date {
  font-size: 0.85rem;
  color: #bb99cc;
  font-family: monospace;
  letter-spacing: 0.5px;
}

.footer {
  margin-top: 4rem;
  font-size: 0.75rem;
  color: #8882aa;
  text-align: center;
  text-shadow: 0 0 1px #a95eff;
}

a {
  color: #5ecfff;
  text-decoration: none;
  border-bottom: 1px dotted #5ecfff;
  transition: all 0.2s ease;
}

a:hover {
  color: #26ffe6;
  text-shadow: 0 0 4px #26ffe6, 0 0 6px #0ff;
  border-bottom: 1px solid #26ffe6;
  filter: hue-rotate(10deg) contrast(1.2);
  text-decoration: wavy underline #26ffe6;
}

.terminal-line::after {
  content: "_";
  animation: blink 1s step-end infinite;
}

.read-more-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  background-color: #5ecfff;
  color: #0a0011;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0.5rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.read-more-button:hover {
  background-color: #44b7e1;
  color: #ffffff;
}

.return-link {
  text-align: right;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.return-home {
  color: #5ecfff;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
}

.return-home:hover {
  text-decoration: underline;
}

.share-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.share-button {
  display: block;
  width: fit-content;
  min-width: 200px;
  text-align: center;
  padding: 0.6rem 1rem;
  background: #1a1a1a;
  color: #5ecfff;
  text-decoration: none;
  border: 1px solid #5ecfff;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.share-button:hover {
  background-color: #5ecfff;
  color: #0a0011;
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 0 0 3px #ff2bb3, 0 0 8px #a95eff;
  }
  50% {
    text-shadow: 0 0 6px #ff2bb3, 0 0 16px #ff2bb3, 0 0 4px #a95eff;
  }
}