:root {
    --bg-dark: #060610;
    --bg-terminal: #04040e;
    --neon-pink: #e066ff;
    --neon-cyan: #00ffff;
    --text-dim: #888;
    --text-bright: #ccc;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-dark);
    color: var(--text-bright);
    font-family: 'Courier New', monospace;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scanline {
    width: 100%;
    height: 100px;
    z-index: 10;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.1;
    position: fixed;
    bottom: 100%;
    animation: scanline 10s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { bottom: 100%; }
    100% { bottom: -100px; }
}

.noise {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url(https://grainy-gradients.vercel.app/noise.svg);
    opacity: 0.05;
    pointer-events: none;
    z-index: 5;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 40px 20px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
}

.logo-wrap {
    margin-bottom: 20px;
    animation: jitter 0.2s infinite;
}

@keyframes jitter {
    0%, 100% { transform: translate(0,0); }
    25% { transform: translate(-0.5px, 0.5px); }
    50% { transform: translate(0.5px, -0.5px); }
    75% { transform: translate(-0.5px, -0.5px); }
}

.glitch {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 10px;
    color: var(--neon-pink);
    text-shadow: 0 0 20px rgba(224, 102, 255, 0.5);
    position: relative;
}

.tagline {
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: var(--neon-cyan);
    margin-top: 10px;
    opacity: 0.8;
}

.terminal {
    background: var(--bg-terminal);
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    margin-bottom: 30px;
    overflow: hidden;
}

.terminal-pink { border: 1px solid rgba(224, 102, 255, 0.2); }
.terminal-cyan { border: 1px solid rgba(0, 255, 255, 0.2); }
.terminal-dim { border: 1px solid rgba(255, 255, 255, 0.05); }

.terminal-header {
    background: #0a0a1a;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.dots { display: flex; gap: 6px; margin-right: 15px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #333; }
.terminal-title { font-size: 0.7rem; color: #555; letter-spacing: 2px; }

.terminal-body {
    padding: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dim);
}

.prompt { color: var(--neon-pink); font-weight: bold; margin-right: 10px; }
.prompt-cyan { color: var(--neon-cyan); font-weight: bold; margin-right: 10px; }

.links-inline {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.link-glow-pink {
    color: var(--neon-pink);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(224, 102, 255, 0.5);
    transition: all 0.3s;
}

.link-glow-pink:hover {
    text-shadow: 0 0 15px rgba(224, 102, 255, 0.8);
    letter-spacing: 2px;
}

.link-glow-cyan {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    transition: all 0.3s;
}

.link-glow-cyan:hover {
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    letter-spacing: 2px;
}

.blink { animation: blink 1s infinite; }
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

.footer {
    margin-top: auto;
    padding: 40px 0;
    text-align: center;
    font-size: 0.7rem;
    color: #333;
    letter-spacing: 2px;
}

@media (max-width: 600px) {
    .glitch { font-size: 2rem; }
    .links-inline { flex-direction: column; gap: 10px; }
}

