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

body {
    background-color: #000;
    color: #0f0;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

.container {
    padding: 50px;
}

h1 {
    font-size: 2.5rem;
    position: relative;
}

.glitch {
    position: relative;
    display: inline-block;
    animation: glitch 0.8s infinite;
}

@keyframes glitch {
    0% { text-shadow: 2px 0 red, -2px 0 blue; }
    50% { text-shadow: -2px 0 red, 2px 0 blue; }
    100% { text-shadow: 2px 0 red, -2px 0 blue; }
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.7;
}

.hidden-text {
    display: inline-block;
    color: red;
    animation: flicker 1.5s infinite;
}

@keyframes flicker {
    0% { opacity: 1; }
    10% { opacity: 1; }
    20% { opacity: 0; }
    30% { opacity: 1; }
    40% { opacity: 1; }
    50% { opacity: 0; }
    60% { opacity: 0; }
    70% { opacity: 1; }
    80% { opacity: 0; }
    90% { opacity: 1; }
    100% { opacity: 1; }
}

button {
    background: none;
    border: 2px solid #0f0;
    color: #0f0;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    margin: 5px;
}

input {
    background: none;
    border: 2px solid #0f0;
    color: #0f0;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #0f0;
    color: #000;
}

.terminal {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #0f0;
    padding: 20px;
    width: 80%;
    margin: 20px auto;
    text-align: left;
    overflow-y: auto;
    max-height: 90vh;
    position: relative;
}

.terminal-header {
    font-weight: bold;
    margin-bottom: 10px;
}

.terminal-body {
    height: 67vh;
    overflow-y: auto;
    padding-right: 10px;
}

.terminal-body p {
    white-space: pre-wrap;
}


.terminal input {
    width: 100%;
    background: black;
    color: #0f0;
    border: none;
    padding: 5px;
}

.hidden {
    display: none;
}

.log-buttons {
    font-size: 0;
}
