/* YELLOW DROPS - Forcing yellow colors */

/* Override any existing drip styles to ensure they're bright yellow */
.piss-drip,
.piss-drip:before,
.piss-drip:after,
.dripping-container::before,
.dripping-container::after {
    background-color: yellow !important; /* Using named color 'yellow' */
    background: yellow !important; /* Double enforcement */
    border-color: yellow !important;
    box-shadow: 0 0 15px yellow !important;
    filter: drop-shadow(0 0 10px yellow) !important;
    opacity: 1 !important;
}

/* Add a special class for absolutely yellow drops */
.yellow-drop {
    position: fixed;
    width: 15px;
    height: 25px;
    background-color: yellow !important;
    border-radius: 50% 50% 40% 20%;
    z-index: 10000;
    box-shadow: 0 0 15px yellow;
    animation: yellow-drip 5s infinite;
    opacity: 0.95;
}

/* Minimal drop styling - just one drop */
.yellow-drop:nth-child(1) { top: 5%; left: 50%; animation-delay: 0s; }

@keyframes yellow-drip {
    0% {
        top: -50px;
        opacity: 0;
        transform: scale(0.8) rotate(5deg);
    }
    10% {
        opacity: 0.95;
    }
    80% {
        opacity: 0.95;
    }
    100% {
        top: 100vh;
        opacity: 0;
        transform: scale(1.2) rotate(-5deg);
    }
}
