.wrapper {
display: flex;
justify-content: center;
align-items: flex-start;
flex-direction: row;
gap: 2rem;
width: 100%;
max-width: 1200px;
margin: 0 auto;
}

.entry {
  position: relative;
  overflow: hidden;
  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: -3px 0 0 #ff2bb3, 3px 0 0 #5ecfff;
}

.entry-date {
  font-size: 0.85rem;
  color: #bb99cc;
  font-family: monospace;
  letter-spacing: 0.5px;
}

.hauntedpic {
  display: block;
  max-width: 100%;
  margin: 2rem auto;
  border: 2px dashed #ff2bb3;
  border-radius: 8px;
  filter: saturate(1.1) contrast(1.1);
  box-shadow: 0 0 12px rgba(255, 47, 186, 0.2);
  transition: all 0.3s ease;
}

.hauntedpic:hover {
  filter: hue-rotate(12deg) contrast(1.5);
  transform: rotate(-1deg) scale(1.02);
}

.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;
  filter: contrast(2) brightness(1.5);
}

.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;
}