/* ============================================
   STARFIELD - Звёздный дождь
   Медленное проплывание над звёздами
   ============================================ */

.global-star-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.global-star {
    position: absolute;
    width: 2px;
    height: 8px;
    opacity: 0;
    animation: globalStarFall linear infinite;
    will-change: transform, opacity;
}

@keyframes globalStarFall {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(100vh);
    }
}

/* Контейнер статьи должен быть выше звезд */
.article-detail {
    position: relative;
    z-index: 1;
    background: transparent;
}