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

body {
    font-family: monospace;
    background-color: #000;
    color: #0f0;
    overflow: hidden;
}

.left-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    padding: 20px;
    background-color: #000;
    z-index: 10;
    overflow-y: auto;
}

.terminal {
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    color: #0f0;
    line-height: 1.6;
}

.header {
    color: #0f0;
    margin-bottom: 30px;
    font-size: 16px;
}

.command {
    color: #0f0;
    margin-top: 20px;
    margin-bottom: 5px;
}

.response {
    color: #fff;
    margin-left: 10px;
    margin-bottom: 15px;
}

.project {
    font-size: 16px;
}

.project-name {
    color: #0f0;
}

.link {
    color: #0f0;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s;
}

.link:hover {
    color: #fff;
}

.link.disabled-link:hover {
    color: #ff0000 !important;
    cursor: not-allowed;
}

.name-response {
    font-size: 28px;
}

.links-under-project {
    margin-top: 5px;
}

.left-panel h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #0f0;
}

.left-panel p {
    font-size: 1.2rem;
    text-align: center;
}

#ascii-canvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    font-family: monospace;
    font-size: 16px;
    line-height: 16px;
    color: rgba(0, 255, 0, 0.6);
    white-space: pre;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
    background-color: #000;
    z-index: 1;
    text-align: right;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.footer {
    position: fixed;
    bottom: 20px;
    left: 25%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 20;
    font-family: 'Press Start 2P', monospace;
    font-size: 10px;
    color: #0f0;
}

.footer span {
    color: #0f0;
}

.social-link {
    color: #0f0;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #fff;
}

.disabled-link:hover {
    color: #ff0000 !important;
    cursor: not-allowed;
}