@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
  margin: 0;
  background: linear-gradient(135deg, #1a001a, #220022);
  color: #ffeeee;
  font-family: 'VT323', monospace;
  text-align: center;
  padding: 4vh 2em;
}

h1 {
  font-size: 3rem;
  color: #ff6699;
  text-shadow:
    0 0 5px #ff3399,
    0 0 10px #ff00cc;
  margin-bottom: 1rem;
}

p {
  font-size: 1.4rem;
  margin: 1.5rem auto;
  max-width: 600px;
  text-shadow:
    0 0 2px #ffccff,
    0 0 5px #cc88cc;
}

em {
  color: #ff99ff;
  font-style: italic;
  text-shadow: 0 0 4px #ff33cc;
}

img {
  margin-top: 2rem;
  filter: contrast(1.4) brightness(0.95) saturate(1.5);
  border: 3px dashed #ff3399;
  box-shadow: 0 0 20px #ff3399;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

img:hover {
  transform: scale(1.05) rotate(-1deg);
  filter: blur(0.8px) hue-rotate(30deg);
}

a {
  color: #ff66cc;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  text-shadow:
    0 0 3px #ff99ff,
    0 0 6px #ff33cc;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ff33cc, #ff66cc);
  opacity: 0.6;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

a:hover {
  color: #ffffff;
  text-shadow:
    0 0 6px #ffccff,
    0 0 12px #ff66cc;
}

a:hover::after {
  transform: scaleX(1);
}

ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

ul li {
  font-size: 1.3rem;
  font-style: italic;
  margin: 1rem auto;
  max-width: 600px;
  color: #ffccee;
  text-shadow:
    0 0 3px #ff99cc,
    0 0 6px #cc66cc;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5em;
}

ul li::before {
  content: "-";
  flex-shrink: 0;
  color: #ff66cc;
  text-shadow:
    0 0 2px #ff99ff,
    0 0 4px #ff33cc;
}









