/* Full-screen intro overlay */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark blurred effect */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
    transition: opacity 1s ease-in-out;
}

/* Logo container */
.intro-content {
    text-align: center;
    color: white;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeZoom 2s forwards;
}

/* Zoom-in animation */
@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hide the intro smoothly */
.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease-in-out;
}
