@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;600&display=swap');

:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --font-main: 'Fira Code', 'Courier New', Courier, monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
}

header {
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #000;
}

.status-line {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.role-line {
    font-size: 1.2rem;
    font-weight: 600;
}

h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    margin-top: 2rem;
    border-bottom: 1px dashed #000;
    display: inline-block;
}

p {
    margin-bottom: 1rem;
    white-space: pre-wrap;
}

.service-group {
    margin-bottom: 1.5rem;
}

.service-group h3 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

ul {
    list-style-type: none; /* No bullets for a cleaner look, or we can use CLI style like > - */
    padding-left: 1rem;
}

ul li::before {
    content: "> ";
    font-weight: bold;
}

.network-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.network-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 0.2rem 0.5rem;
    transition: all 0.1s steps(2); /* Instant stepped transition for retro feel */
    width: fit-content;
    gap: 10px;
}

.network-link:hover {
    background-color: #000;
    color: #fff;
}

.network-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

footer {
    margin-top: 4rem;
    padding-top: 1rem;
    border-top: 1px solid #000;
    font-size: 0.9rem;
}

/* Language Switcher */
.lang-switch {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-main);
}

.lang-btn {
    background: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    padding: 2px 5px;
}

.lang-btn.active {
    font-weight: bold;
    text-decoration: underline;
}

.lang-btn:hover {
    background-color: #000;
    color: #fff;
}

@media (max-width: 600px) {
    body {
        padding: 1rem;
    }
    
    .lang-switch {
        position: static;
        margin-bottom: 2rem;
        display: block;
        text-align: right;
    }
}
