.track {
    padding: 5rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url('../assets/house.jpg');
}

.track h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-transform: lowercase;
    margin-bottom: 1rem;
}

.lyrics p {
    opacity: 0.2;
    transition: opacity 0.4s ease;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    max-width: 70ch;
    margin: 1.2rem 0;
    color: #999;
    text-align: left;
}

.lyrics p.active {
    opacity: 1;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 0 6px #ffffff;
}
.trail {
  position: fixed;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 45, 0.9), rgba(145, 44, 44, 0.6));
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.6), 0 0 20px rgba(255, 0, 0, 0.4);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: lighten;
}