


.zen-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
    max-height: 180px;
    background-color: rgba(0, 0, 0, .2);
}

/* Button styles */
.zen-control {
    background-color: transparent;
    /* Fully transparent background */
    text-shadow: rgba(0, 0, 0, 0.2) 2px 2px;
    font-size: 60px;
    cursor: pointer;
    transition: transform 0.1s;
    border: none;
    outline: none;


}

/* Hover effect */
.zen-control:hover {
    animation: wiggle 0.5s infinite;
}

/* Smaller buttons on mobile */
@media (max-width: 768px) {
    .zen-control {
        font-size: 60px;
        /* Reduce font size */
    }
}

@media (max-width: 480px) {
    .zen-control {
        font-size: 40px;
        /* Further reduce size on very small screens */
    }
}



@keyframes wiggle {

    0%,
    100% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }
}

@keyframes ripple-animation {
    to {
        transform: scale(10);
        opacity: 0;
    }
}

@keyframes psychedelicPulse {
    0% {
        filter: brightness(1) drop-shadow(0 0 4px rgba(255, 0, 255, 0.1));
        transform: scale(1);
    }

    50% {
        filter: brightness(1.2) drop-shadow(0 0 8x rgba(116, 3, 131, 0.2));
        transform: scale(1.3);
    }

    100% {
        filter: brightness(1) drop-shadow(0 0 16px rgba(255, 0, 255, 0.3));
        transform: scale(1);
    }
}