:root {
    --neon-blue: #00f3ff;

    --deep-space: #0a0a0f;

    --text-dim: #8892b0;
}

body {
    background-color: var(--deep-space);
    color: var(--neon-blue);
    font-family: 'Courier New', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    overflow: hidden;
}

.scanline {
    width: 100%;
    height: 100px;
    z-index: 10;
    background: linear-gradient(0deg, rgba(0, 243, 255, 0.1) 0%, transparent 100%);
    opacity: 0.1;
    position: absolute;
    bottom: 100%;
    animation: scan 4s linear infinite;
}

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

.dashboard {
    border: 2px solid var(--neon-blue);
    padding: 2rem;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    background: rgba(10, 10, 15, 0.9);
}

.status-bar {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--neon-blue);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.blink {
    animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
    50% { opacity: 0; }
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.avatar-box {
    border: 1px solid var(--text-dim);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.highlight {
    background: var(--neon-blue);
    color: black;
    padding: 0 5px;
}

.stream-entry h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-dim);
}

.skill-list {
    list-style: none;
    padding: 0;
}

.skill-list li::before {
    content: ">>";
}

a{
    color: var(--neon-blue);
    text-decoration: none;
    border: 1px solid var(--neon-blue);
    padding: 5px 10px;
    font-size: 0.8rem;
}

a:hover {
    background: var(--neon-blue);
    color: black;
}

.terminal-footer {
    border-top: 1px solid var(--neon-blue);
    margin-top: 30px;
    padding-top: 10px;
    font-size: 0.8rem;
    text-align: center;
    color: var(--text-dim);
}

#my-avatar {
    width: 120px;
    height: 120px;
    image-rendering: pixelated;
    border: 2px solid var(--neon-blue);
    padding: 5px;
    filter: drop-shadow(0 0 8px var(--neon-blue));
    transition: 0.3s;
}

#my-avatar:hover {
    filter: drop-shadow(0 0 20px var(--neon-blue));
    transform: scale(1.05);
}