/* Animation Container */
.animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Star Animation */
.star {
    position: absolute;
    background: transparent;
    animation: glowing 2s infinite;
    z-index: -1;
    pointer-events: none;
}

.star::before {
    content: '★';
    color: gold;
    font-size: 20px;
    position: absolute;
    animation: rotate 3s linear infinite;
}

@keyframes glowing {
    0%, 100% {
        opacity: 0.5;
        filter: drop-shadow(0 0 5px gold);
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 15px gold);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Heart Animation */
.heart {
    position: absolute;
    font-size: 18px;
    animation: float 6s infinite ease-in-out;
    z-index: -1;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-30px) rotate(10deg); opacity: 1; }
}

/* Comet Animation */
.comet {
    position: absolute;
    width: 3px;
    height: 3px;
    background: linear-gradient(45deg, #fff, #87CEEB);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.comet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), transparent);
    transform-origin: 0 50%;
    animation: comet-tail 4s linear infinite;
}

@keyframes comet-tail {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.comet1 {
    top: 10%;
    left: -100px;
    animation: comet-move1 8s linear infinite;
}

.comet2 {
    top: 30%;
    left: -100px;
    animation: comet-move2 10s linear infinite;
    animation-delay: 3s;
}

.comet3 {
    top: 60%;
    left: -100px;
    animation: comet-move3 12s linear infinite;
    animation-delay: 6s;
}

.comet4 {
    top: 20%;
    left: -100px;
    animation: comet-move4 9s linear infinite;
    animation-delay: 2s;
}

.comet5 {
    top: 45%;
    left: -100px;
    animation: comet-move5 11s linear infinite;
    animation-delay: 5s;
}

.comet6 {
    top: 75%;
    left: -100px;
    animation: comet-move6 10s linear infinite;
    animation-delay: 8s;
}

.comet7 {
    top: 15%;
    left: -100px;
    animation: comet-move7 13s linear infinite;
    animation-delay: 1s;
}

.comet8 {
    top: 50%;
    left: -100px;
    animation: comet-move8 9s linear infinite;
    animation-delay: 4s;
}

.comet9 {
    top: 70%;
    left: -100px;
    animation: comet-move9 11s linear infinite;
    animation-delay: 7s;
}

@keyframes comet-move1 {
    0% { left: -100px; }
    100% { left: 110%; }
}

@keyframes comet-move2 {
    0% { left: -100px; }
    100% { left: 110%; }
}

@keyframes comet-move3 {
    0% { left: -100px; }
    100% { left: 110%; }
}

@keyframes comet-move4 {
    0% { left: -100px; }
    100% { left: 110%; }
}

@keyframes comet-move5 {
    0% { left: -100px; }
    100% { left: 110%; }
}

@keyframes comet-move6 {
    0% { left: -100px; }
    100% { left: 110%; }
}

@keyframes comet-move7 {
    0% { left: -100px; }
    100% { left: 110%; }
}

@keyframes comet-move8 {
    0% { left: -100px; }
    100% { left: 110%; }
}

@keyframes comet-move9 {
    0% { left: -100px; }
    100% { left: 110%; }
}
