/* ============================================================ */
/* ANIMACIÓN CIRCULAR PARA FOTOS EFÍMERAS (MODO MINIMALISTA)     */
/* ============================================================ */

#ephemeral-timer-circle {
    filter: drop-shadow(0 0 8px rgba(236, 72, 153, 0.5));
    animation: fadeInCircle 0.5s ease;
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeInCircle {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

#ephemeral-progress-path {
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

/* Animación de la mecha (se consume) */
.animate-ephemeral-countdown {
    animation: ephemeralCountdown linear forwards;
}

@keyframes ephemeralCountdown {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: 100;
    }
}

.ephemeral-timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: 800;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
    z-index: 101;
    font-family: sans-serif;
}