@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    font-family: 'Orbitron', monospace;
    background-color: #000000;
    color: #00ff00;
    margin: 0;
    padding: 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.landing h1 {
    font-size: 5em;
    text-shadow: 0 0 5px #00ff00;
    margin-bottom: 50px;
}

.enter-link {
    font-size: 2em;
    color: #ff00ff;
    text-decoration: none;
    border: 2px solid #ff00ff;
    padding: 10px 20px;
    transition: all 0.3s;
    text-shadow: 0 0 5px #ff00ff;
}

.enter-link:hover {
    background-color: #ff00ff;
    color: #000000;
    box-shadow: 0 0 10px #ff00ff;
}

.nav-container h1 {
    font-size: 3em;
    margin-bottom: 50px;
    text-shadow: 0 0 5px #00ffff;
}

.loading-dots {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 5px #00ffff; }
    50% { opacity: 0.5; text-shadow: 0 0 10px #00ffff; }
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

#page-selector {
    font-family: 'Orbitron', monospace;
    font-size: 1.5em;
    background-color: #000000;
    color: #00ff00;
    border: 2px solid #00ff00;
    padding: 10px;
    width: 300px;
    text-align: center;
    box-shadow: 0 0 10px #00ff00;
}

#page-selector option {
    background-color: #000000;
    color: #00ff00;
}

.page-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #00ff00;
}

.page-content p {
    font-size: 1.2em;
    margin-bottom: 50px;
}

.back-link {
    font-size: 1.5em;
    color: #ff00ff;
    text-decoration: none;
    border: 2px solid #ff00ff;
    padding: 10px 20px;
    transition: all 0.3s;
    text-shadow: 0 0 5px #ff00ff;
}

.back-link:hover {
    background-color: #ff00ff;
    color: #000000;
    box-shadow: 0 0 10px #ff00ff;
}

.terminal {
    background-color: #000000;
    color: #00ff00;
    border: 2px solid #00ff00;
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 1.2em;
    margin: 20px 0;
    box-shadow: 0 0 10px #00ff00;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}