@font-face {
    font-family: 'VT323';
    src: url('/files/VT323-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --retro-bg: #050505;
    --retro-panel: #0a0a0a;
    --retro-border: #14532d;
    --retro-text: #4ade80;
    --retro-text-dim: #9ca3af;
    --retro-accent: #22c55e;
    --retro-danger: #ef4444;
}

body {
    margin: 0;
    font-family: 'VT323', monospace;
    background-color: var(--retro-bg);
    color: var(--retro-text);
}

/* BACKGROUND */
.bg-retro-void {
    background-color: #081108;
    background-image:
        linear-gradient(rgba(20, 50, 20, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 50, 20, 0.1) 1px, transparent 1px);
    background-size: 3px 3px;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.9);
}

/* SCANLINE */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(0deg, transparent 0%, rgba(51,255,51,0.03) 50%, transparent 100%);
    animation: scanline 10s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* LAYOUT */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero {
    text-align: center;
    max-width: 700px;
}

/* TYPOGRAPHY */
.title {
    font-size: 5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(51,255,51,0.5);
}

.subtitle {
    font-size: 1.5rem;
    color: var(--retro-text-dim);
    margin-bottom: 2rem;
}

.tagline {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-top: 1px solid var(--retro-border);
    border-bottom: 1px solid var(--retro-border);
    padding: 0.5rem;
    margin-bottom: 3rem;
    color: var(--retro-accent);
}

/* BUTTONS */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem;
    border: 2px solid var(--retro-border);
    text-decoration: none;
    color: var(--retro-text);
    transition: 0.2s;
    font-size: 1.5rem;
}

.btn:hover {
    border-color: var(--retro-accent);
    transform: scale(1.05);
}

.btn.primary {
    background: var(--retro-panel);
}

/* SMALL TEXT */
.advisory {
    font-size: 0.9rem;
    color: var(--retro-text-dim);
    margin-top: 2rem;
}

.counter {
    font-size: 1rem;
    color: var(--retro-text-dim);
    margin-top: 1rem;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

.footer a {
    margin: 0 1rem;
    color: var(--retro-text-dim);
    text-decoration: none;
}

.footer a:hover {
    color: var(--retro-accent);
}

.footer .copyright {
    margin-top: 1rem;
    color: var(--retro-text-dim);
}
