
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.splash-text {
    color: white;
    font-family: 'CustomFont', Arial, sans-serif;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    animation: blink 1.5s infinite;
    font-family: Consolas, "Lucida Console", monospace;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.enter-button {
    font-family: 'CustomFont', Arial, sans-serif;
    background: none;
    color: white;
    font-size: 25px;
    cursor: pointer;
    transition: all 0.1s ease;
    border-bottom: 2px solid white;
}

.enter-button:hover {
    text-shadow: 0 0 10px white, 0 0 20px white;
}

.hidden {
    display: none !important;
}

.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
} 