body {
    background-color: #000;
    color: #fff;
    font-family: "Courier New", Courier, monospace;
    font-size: 16px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.loader {
    white-space: pre;
    line-height: 1.5;
}

.blinking-cursor {
    display: inline-block;
    width: 10px;
    height: 20px;
    background-color: #fff;
    animation: blink 0.5s step-start infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 2s ease-in-out;
}

body.after-page {
    background-color: #000;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #fff;
    perspective: 800px;
    position: relative;
}


.links-container a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.links-container a:hover {
    color: #0ff;
    text-shadow: 0 0 8px #0ff, 0 0 15px #0ff;
    transform: scale(1.1);
}

@keyframes revealText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
