body {
  background: url('https://fallenfleurs.neocities.org/assetsandimages/bgs/bgbc03re0.png') repeat;
  background-size: cover;
  color: #e3ffe1;
  font-family: 'Special Elite', monospace;
  margin: 0;
  padding: 2rem;
  cursor: none;
}

.index-container {
  background: rgba(30, 20, 30, 0.8);
      margin: 5rem auto;
      padding: 2rem;
      max-width: 720px;
      border: 2px solid #ba8f8f;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(180, 255, 170, 0.2);
      backdrop-filter: blur(2px);
      position: relative;
}

h1 {
  font-family: 'Creepster', cursive;
  text-align: center;
  font-size: 2.5rem;
  color: #942f2f;
  margin-bottom: 2rem;
}

.year-section h2 {
  font-size: 1.5rem;
  color: #c83232;
  border-bottom: 1px solid #942f2f;
  padding-bottom: 0.25rem;
  margin-top: 2rem;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin: 0.5rem 0;
}

ul li a {
  text-decoration: none;
  color: #ffffff;
  background: rgba(90, 40, 90, 0.4);
  padding: 0.5rem 1rem;
  display: inline-block;
  border-radius: 6px;
  transition: all 0.2s ease;
  border: 1px solid #c0a0b5;
  font-weight: bold;
}

ul li a:hover {
  background: rgba(200, 120, 200, 0.3);
  text-shadow: 0 0 5px #fff0f8;
}

#custom-cursor, #glitch-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}

#custom-cursor {
  width: 32px;
  height: 32px;
  mix-blend-mode: lighten;
  image-rendering: pixelated;
}

#glitch-cursor {
  width: 32px;
  height: 32px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 200, 220, 0.1) 0px,
    rgba(255, 0, 128, 0.2) 2px,
    transparent 4px
  );
  animation: glitch-flicker 0.15s infinite;
  opacity: 0.3;
  filter: blur(1px) contrast(150%);
}

@keyframes glitch-flicker {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.2; }
  20%  { transform: translate(-1px, 1px) scale(1.1); opacity: 0.4; }
  40%  { transform: translate(1px, -1px) scale(1); opacity: 0.3; }
  60%  { transform: translate(2px, 0) scale(1.05); opacity: 0.5; }
  80%  { transform: translate(-2px, -1px) scale(1); opacity: 0.2; }
  100% { transform: translate(0, 1px) scale(1.1); opacity: 0.3; }
}