/* Motivational Quotes */
.quote-display {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    margin-bottom: 8vw;
    /* Approx half digit height (18vw/2) + increased gap */
    width: 100%;
    pointer-events: none;
    /* Let clicks pass through */
    min-height: 1.5em;
    /* Prevent layout shift */
    opacity: 0;
    animation: fadeInQuote 1s ease-out forwards;
    letter-spacing: 0.5px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

/* When UI is hidden (inactivity), move quote to top */
.quote-display.ui-hidden {
    bottom: auto;
    top: 20px;
    margin-bottom: 0;
    font-size: 1rem;
}

@keyframes fadeInQuote {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}