@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;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #000;
    font-family: var(--font-main);
    font-size: 0.85rem;
}

.top-nav-brand {
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    color: inherit;
    letter-spacing: 0.02em;
}

.top-nav-brand:hover {
    background-color: #000;
    color: #fff;
    padding: 1px 4px;
}

.top-nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-nav-link {
    text-decoration: none;
    color: inherit;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    padding: 2px 5px;
}

.top-nav-link:hover {
    background-color: #000;
    color: #fff;
}

.top-nav-sep {
    opacity: 0.3;
}

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;
}

.newsletter-container {
    margin-top: 1rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#newsletter-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.newsletter-iframe {
    max-width: 100%;
    width: 350px;
    /* Smaller width as requested */
}

.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 Buttons */
.lang-btn {
    background: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.85rem;
    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;
    }

    .top-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}