/* Global Shining Stars */
.global-stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100; /* On top of vignettes and backgrounds, below text/header */
    overflow: hidden;
}

.global-star {
    position: absolute;
    background: white;
    /* Universal 4-pointed star shape */
    clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
    opacity: 0;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.4);
    filter: drop-shadow(0 0 2px white);
}

/* Star Glow Effect (Super Bright) */
.global-star::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400%;
    height: 400%;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, transparent 80%);
    border-radius: 50%;
    filter: blur(3px);
    opacity: 0.6;
}

/* Twinkle Animation (Aggressive) */
@keyframes global-twinkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.7);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* Light Mode Overrides - Disable stars for clean light look */
[data-theme="light"] .global-stars-container {
    display: none !important;
}
