#sovet-text {
    text-align: center;
    position: relative;
    z-index: 1;
}

.animated-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: riseIn 0.6s ease-out forwards;
}

@keyframes riseIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.falling-stars {
    position: fixed;
    top: 0;
    left: 50%;
    font-size: 2.5rem;
    opacity: 0;
    animation: fall 1.4s ease-out forwards;
    z-index: 9999;
    pointer-events: none;
    white-space: nowrap;
}

@keyframes fall {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-60px);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(400px);
    }
}
