/* SLEIGH ANIMATION STYLES */
.sleigh-img {
    position: fixed;
    bottom: 30%;
    left: -200px;
    width: 200px;
    z-index: 2000;
    pointer-events: none;
}

@keyframes slideAcross {
    0% {
        left: -200px;
        bottom: 30%;
    }
    25% {
        bottom: 55%;
    }
    50% {
        bottom: 65%;
    }
    75% {
        bottom: 55%;
    }
    100% {
        left: 100vw;
        bottom: 30%;
    }
}

.sleigh-animate {
    animation: slideAcross 6s ease-in-out forwards;
}

/* VIDEO STYLES */
.video-container {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.video-player {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* IMAGE STYLES */
.image-container {
    margin-top: 1.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.character-image {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* CLOSING TEXT STYLES */
.closing-text-container {
    margin-top: 2rem;
    padding: 1rem 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--helio-cosmos);
    text-align: center;
    font-weight: 600;
}