body {
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: #f8fafc;
    margin: 0;
    padding: 40px 20px;
}

.container {
    max-width: 700px;
    margin: auto;
    background: #1e293b;
    padding: 40px;
    border-radius: 16px;
}

h1 {
    margin-top: 0;
}

.bio {
    color: #94a3b8;
}

.links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.link-badge {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #334155;
    color: #f8fafc;
    text-decoration: none;
}

.link-badge:hover {
    color: #38bdf8;
    border-color: #38bdf8;
}

.divider {
    height: 1px;
    background: #334155;
    margin: 25px 0;
}

.post {
    background: #0f172a;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.date {
    color: #38bdf8;
    font-size: 0.85rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
}

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

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.footer {
    text-align: center;
    margin-top: 40px;
    color: #94a3b8;
}