/* 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;
    /* Use top instead of bottom for smooth transition to top alignment */
    /* top: 35% aligns it roughly above current timer position (was bottom: 50% + 8vw) */
    /* Shift up 10px from 35% as requested */
    top: calc(35% - 35px);
    left: 0;
    right: 0;
    width: 100%;
    pointer-events: none;
    /* Let clicks pass through */
    min-height: 1.5em;
    /* Prevent layout shift */
    --quote-opacity: 1;
    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 cubic-bezier(0.4, 0.0, 0.2, 1);
}

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

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

    to {
        opacity: var(--quote-opacity, 1);
        transform: translateY(0);
    }
}