/* star-old.css - Простые мерцающие звёзды */

.stars-old {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Звёзды для ПК */
.star-small {
    position: absolute;
    width: 1px;
    height: 1px;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}

.star-medium {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 2.5s ease-in-out infinite;
}

.star-large {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
    box-shadow: 0 0 2px rgba(255,255,255,0.5);
}

/* Статичные звёзды для телефона */
.star-static {
    position: absolute;
    background: #fff;
    border-radius: 50%;
}

/* Анимация мерцания */
@keyframes twinkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Телефоны - отключаем анимацию */
@media (max-width: 768px) {
    .star-small, .star-medium, .star-large {
        animation: none;
        opacity: 0.4;
    }
}