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: #d4af37; /* Thematic color */
  text-shadow: 0 0 8px rgba(212, 175, 55, 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: #d4af37; /* 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: #FFFACD !important; /* Very bright, almost white, version of theme color, forced */
  -webkit-text-stroke: 2px #d4af37; /* Theme color outline, thicker */
  text-stroke: 2px #d4af37; /* Standard text-stroke, thicker */
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.8), 0 0 20px rgba(212, 175, 55, 0.6); /* Diffused glow */
  transform: scale(1.05); /* Slightly enlarge */
}

h1 a:hover {
  background: linear-gradient(90deg, #888, #aaa, #888);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.7); /* Stronger glow for h1 on hover */
}