
.lyrics-container {
    position: absolute;
    opacity: 0;
    font-family: 'Courier New', monospace;
    font-size: 24px;
    line-height: 1.8;
    color: #00ff00;
    text-shadow: none;
    z-index: 5;
    white-space: pre-line;
    user-select: none;
    transition: opacity 1.2s ease-in-out;
}

.lyrics-container.visible {
    opacity: 1;
}

.lyrics-line {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lyrics-line::after {
    content: '|';
    animation: blink 1s infinite;
    color: #00ff00;
    margin-left: 5px;
}

.lyrics-line.typing-complete::after {
    display: none;
}


@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@media screen and (min-width: 769px) {
    .lyrics-container {
        left: calc(50% + 50px);
        top: 50%;
        transform: translateY(-50%);
        text-align: left;
    }
}

@media screen and (max-width: 768px) {
    .lyrics-container {
        left: 50%;
        top: calc(50% + 150px);
        transform: translateX(-50%);
        text-align: center;
        font-size: 18px;
        line-height: 1.6;
    }
}

@media screen and (max-width: 480px) {
    .lyrics-container {
        font-size: 16px;
        line-height: 1.5;
    }
}

