/* Holiday Landing Animation Modal */

.holiday-animation-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: holidayFadeIn 0.5s ease-out;
}

.holiday-animation-modal.hidden {
    display: none;
}

.holiday-animation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.holiday-animation-content {
    position: relative;
    width: 100%;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: holidayScaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes holidayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes holidayScaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.holiday-animation-media {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: holidayPulse 2s ease-in-out infinite;
}

.holiday-animation-media img,
.holiday-animation-media video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.holiday-animation-media video {
    background: #000;
}

@keyframes holidayPulse {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 20px 80px rgba(72, 146, 146, 0.5);
    }
}

.holiday-animation-message {
    margin-top: 2rem;
    text-align: center;
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.8),
        0 2px 6px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(72, 146, 146, 0.3);
    animation: holidayTextShimmer 2s ease-in-out infinite;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 10;
    /* Elevated effect with multiple shadows */
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes holidayTextShimmer {
    0%, 100% {
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 0 4px 20px rgba(72, 146, 146, 0.8), 0 0 30px rgba(72, 146, 146, 0.4);
    }
}

.holiday-animation-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    -webkit-tap-highlight-color: transparent;
}

.holiday-animation-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.holiday-animation-close:active {
    transform: scale(0.95);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .holiday-animation-content {
        max-width: 95vw;
    }
    
    .holiday-animation-message {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .holiday-animation-media {
        max-width: 100%;
        border-radius: 16px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .holiday-animation-message {
        font-size: 1.75rem;
    }
}

