@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap');

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

body {
    font-family: 'JetBrains Mono', monospace;
    background: #fdfcf7;
    color: #202020;
    line-height: 1.6;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.header {
    margin-bottom: 3rem;
}

.name {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

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

.status {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
    background: #f0f0f0;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.links {
    display: grid;
    gap: 0.5rem;
}

.link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.link-item:last-child {
    border-bottom: none;
}

.link-label {
    color: #666;
    font-size: 0.9rem;
}

.link-url {
    color: #333;
    text-decoration: none;
    font-family: monospace;
    font-size: 0.9rem;
}

.link-url:hover {
    color: #000;
    text-decoration: underline;
}

.placeholder-text {
    color: #999;
    font-style: italic;
}

.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    body {
        padding: 1rem;
    }
    
    .name {
        font-size: 1.5rem;
    }
    
    .link-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}