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;
  border-left: 3px solid #ff2bb3;
  border-right: 3px solid #26ffe6;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 1.9px,
    rgba(255, 255, 255, 0.02) 2px
  );
}

h1, h2 {
  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;
  position: relative;
}

@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;
  }
}

h1::after {
  content: "_";
  animation: blink 1s steps(1) infinite;
  color: #26ffe6;
  margin-left: 5px;
}

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

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

.post:hover {
  background: rgba(84, 35, 130, 0.25);
}

.date {
  font-size: 0.85rem;
  color: #bb99cc;
  font-family: monospace;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 0 1px #5ecfff;
}

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

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

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

img {
  max-width: 100%;
  display: block;
  margin: 2rem auto;
  border: 2px dashed #ff2bb3;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 47, 186, 0.3);
  transition: all 0.3s ease;
}

img:hover {
  transform: rotate(-1deg) scale(1.03);
  filter: contrast(1.2) hue-rotate(-8deg);
}
.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;
}


.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;
} 









