/* VDP Tokenizer - Hacker Theme */
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;700&display=swap');

:root {
    --bg-color: #050505;
    --text-color: #00ff00;
    --dim-color: #333;
    --highlight-color: #00cc00;
    --error-color: #ff3333;
    --font-stack: 'Fira Code', 'Courier New', monospace;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-stack);
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    text-align: center;
    border: 1px solid var(--dim-color);
    padding: 2rem;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.1);
    background: rgba(0, 0, 0, 0.8);
    max-width: 600px;
    width: 90%;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px var(--highlight-color);
}

.status {
    font-size: 1.2rem;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    background-color: var(--text-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--text-color);
    animation: pulse 2s infinite;
}

.console-output {
    text-align: left;
    background: #000;
    border: 1px dashed var(--dim-color);
    padding: 1rem;
    margin: 2rem 0;
    font-size: 0.9rem;
    color: #ccc;
    min-height: 100px;
}

.links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

a.btn {
    text-decoration: none;
    color: var(--bg-color);
    background: var(--text-color);
    padding: 0.5rem 1rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

a.btn:hover {
    background: var(--bg-color);
    color: var(--text-color);
    box-shadow: 0 0 10px var(--text-color);
    border: 1px solid var(--text-color);
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.8rem;
    color: var(--dim-color);
}
