body {
  background-color: #1a1a1a; /* Dark background */
  color: #e8dcbf; /* Light text color */
  font-family: 'Crimson Pro', serif;
  line-height: 1.6;
  padding: 2em;
  max-width: 900px;
  margin: auto;
  background-image: url('https://www.transparenttextures.com/patterns/dark-denim.png'); /* Subtle texture */
  background-repeat: repeat;
}

h1 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 1.2em;
  color: #cdb4f5; /* Thematic color */
  text-shadow: 0 0 8px rgba(205, 180, 245, 0.5); /* Subtle glow */
}

p {
  margin-bottom: 1em;
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

a {
  color: #cdb4f5; /* Thematic color for links */
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease; /* Smooth transition for all effects */
  display: inline-block; /* Required for transform to work */
}

a:hover {
  color: #F0FFFF !important; /* Very bright, almost white, version of theme color, forced */
  -webkit-text-stroke: 2px #cdb4f5; /* Theme color outline, thicker */
  text-stroke: 2px #cdb4f5; /* Standard text-stroke, thicker */
  text-shadow: 0 0 10px rgba(205, 180, 245, 0.8), 0 0 20px rgba(205, 180, 245, 0.6); /* Diffused glow */
  transform: scale(1.05); /* Slightly enlarge */
}

