/* Splash Screen Styles */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Topmost */
    transition: opacity 1s ease-in-out;
    background: rgba(20, 20, 20, 0.4); /* Slight tint over the canvas */
}

#splash-content {
    text-align: center;
    color: white;
    z-index: 10000;
}

#splash-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 2rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    opacity: 0;
    animation: fadeInUp 1.5s ease-out forwards 0.5s;
}

#splash-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1.5s ease-out forwards 1s;
}

#splash-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide scrollbar when splash is active */
body.splash-active {
    overflow: hidden;
}
