/**
 * @package   blinkingstars
 * @copyright (c)2025 WeDevlops Team / WeDevlops.com
 * @license   GNU General Public License version 2 or later
 */
.blinking-stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
    background: transparent;
}

.star {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #23fff2;
    clip-path: polygon(
        50% 0%, 
        61% 35%, 
        98% 35%, 
        68% 57%, 
        79% 91%, 
        50% 70%, 
        21% 91%, 
        32% 57%, 
        2% 35%, 
        39% 35%
    );
    animation: blink 2s infinite ease-in-out;
}

@keyframes blink {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}
