.bio {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 24px;
}

.bio-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left; 
}

.ascii-profile {
    width: 175px;
    height: 175px;
    border: 2px solid var(--accent-amber);
    background-color: var(--bg-dark);
    text-shadow: 0 0 5px currentColor,
               0 0 10px currentColor,
               0 0 20px currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ascii-profile pre {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.3em;
    white-space: pre;
}

.name {
    display: inline-block;
}

.cursor {
    display: inline-block;
    margin-left: 2px;
    color: var(--accent-amber);
    animation: blink 1s steps(2, start) infinite;
}

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

.social-icons {
    margin-top: 12px;
}

.social-icons a {
    text-decoration: none;
}

.social-icons a img {
    width: 32px;
    height: 32px;
    margin: 0 8px;
    filter: brightness(0) invert(90%) sepia(70%) saturate(500%) hue-rotate(20deg);
    transition: transform 0.2s;
}

.social-icons a img:hover {
    transform: scale(1.2);
}