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

body {
    background: #0f0624;
    color: #b794f6;
    font-family: 'Courier New', monospace;
    padding: 40px 20px;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.prompt {
    color: #a78bfa;
    margin-bottom: 20px;
}

.prompt::before {
    content: "phluxjr@arch:~$ ";
    color: #7c3aed;
}

h1 {
    color: #c4b5fd;
    font-size: 2em;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(167, 139, 250, 0.5);
}

.ascii-art {
    color: #8b5cf6;
    margin: 20px 0;
    line-height: 1.2;
    font-size: 0.85em;
}

.links {
    margin-top: 30px;
}

.link-item {
    padding: 10px 0;
    border-bottom: 1px solid #2d1b4e;
}

.link-item:last-child {
    border-bottom: none;
}

a {
    color: #a78bfa;
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    color: #c4b5fd;
    text-shadow: 0 0 8px rgba(167, 139, 250, 0.8);
}

a::before {
    content: "[ ";
    color: #7c3aed;
}

a::after {
    content: " ]";
    color: #7c3aed;
}

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #2d1b4e;
    color: #6d28d9;
    font-size: 0.9em;
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}
