body {
    font-family: -apple-system, sans-serif;
    background: #111;
    color: #eee;
    margin: 15px;
    overflow-x: hidden;
}

.nav-bar {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
    font-size: 14px;
}

.btn-home {
    display: inline-block;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    padding: 6px 12px;
    border: 1px solid #444;
    border-radius: 4px;
    transition: all .2s;
}

.btn-home:hover {
    color: #fff;
    background: #222;
    border-color: #666;
}

article {
    margin-bottom: 40px;
}

time {
    display: block;
    margin-bottom: 12px;
    color: #999;
    font-family: Menlo, Monaco, Consolas, monospace;
}

.albums {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 12px 0 8px;
}

.albums a {
    display: block;
}

.albums img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    cursor: zoom-in;
    transition: transform .2s;
}

.albums img:hover {
    transform: scale(1.03);
}

.list {
    white-space: pre-line;
    color: #999;
    font-size: .95rem;
    line-height: 1.5;
    margin: 0 0 14px;
}

.artist {
    color: #888;
    font-style: italic;
}

p {
    margin: 0 0 1.2em;
    max-width: 60ch;
    line-height: 1.6;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 92vw;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 0;
}