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

body {
    font-family: 'JetBrains Mono', 'Monaco', 'Consolas', 'Courier New', monospace;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 595px;
    margin: 0 auto;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #222;
}

.subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 24px;
}

.links-top {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.links-top a {
    color: #0066cc;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.links-top a:hover {
    color: #004499;
    text-decoration: underline;
}

.content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 24px;
}

.content p:last-child {
    margin-bottom: 0;
}

.content a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s ease;
}

.content a:hover {
    color: #004499;
    text-decoration: underline;
}

.tiny-text {
    font-size: 0.5rem;
    color: #888;
}

/* Mobile responsiveness */
@media (max-width: 700px) {
    .container {
        padding: 60px 20px;
    }

    h1 {
        font-size: 1.7rem;
    }

    .content p {
        font-size: 1rem;
    }

    .links-top {
        gap: 16px;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 1.5rem;
    }

    .links-top {
        flex-direction: column;
        gap: 12px;
    }
}