:root {
    --bg-color: #000000;
    --text-primary: #e5e5e5;
    --text-muted: #666666;
    --grid-line: #333333;
    --hover-color: #ffffff;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;
    margin: 0;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px; 
    background-color: var(--grid-line);
    border: 1px solid var(--grid-line);
    max-width: 800px;
    width: 100%;
}

@media (min-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .span-2 {
        grid-column: span 2;
    }
}

.bento-box {
    background-color: var(--bg-color);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.header {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    display: block;
}

h1 {
    font-size: 1.25rem;
    font-weight: normal;
    margin: 0 0 0.25rem 0;
    color: var(--hover-color);
}

p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.muted {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--hover-color);
    border-bottom: 1px solid var(--hover-color);
}

.flex-row {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
}