body {
    background-color: #faedc1;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    color: #180461ff;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

.star {
    position: absolute;
    width: 0;
    height: 0;
    animation: twinkle var(--duration) infinite;
    opacity: 0;
    color: white;
}

.star::before {
    content: "★";
    position: absolute;
    font-size: var(--size);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.7);
}

@keyframes twinkle {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0deg) scale(0.5);
    }
    25% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
        transform: translateY(-50px) rotate(180deg) scale(1);
    }
    75% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(360deg) scale(0.5);
    }
}
