.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: 'Georgia', serif;
    z-index: 9999;
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
}

.splash-content {
    text-align: center;
    opacity: 0;
    animation: fadeInContent 2s ease-out forwards;
}

.splash-content h1 {
    font-size: 3.5rem; 
    color: #f5f5f5;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300; 
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
    animation: fadeInText 2s ease-out forwards;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInContent {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.splash-content p {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 15px;
    opacity: 0;
    animation: fadeInText 2s ease-out forwards;
    animation-delay: 1.5s;
}

.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
