body {
    background: #0a0a0a;
    color: #b5b5b5;
    font-family: serif;
    line-height: 1.8;
}

/* layout */
.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* header */
h1 {
    color: #ff2f92;
    font-size: 3rem;
    font-weight: 600;
}

.subtitle {
    font-family: monospace;
    font-size: 0.85rem;
    color: #9b5cff;
    margin-top: 0.5rem;
}

/* entry */
.entry {
    margin: 4rem 0;
    padding-left: 1.5rem;
    border-left: 2px solid #1a1a1a;
}

.entry-meta {
    font-family: monospace;
    font-size: 0.7rem;
    color: #777;
    margin-bottom: 1rem;
}

.entry-title {
    color: #ff2f92;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.entry-body p {
    margin-bottom: 1.5rem;
}

/* navigation */
.nav {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
}

.nav a {
    font-family: monospace;
    color: #b5b5b5;
    text-decoration: none;
}

.nav a:hover {
    color: #ff2f92;
}

/* footer */
footer {
    font-family: monospace;
    font-size: 0.75rem;
    color: #666;
    border-top: 1px solid #1a1a1a;
    padding-top: 1.5rem;
}

/* subtle life */
.breathing {
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.008); }
}

.flicker {
    animation: flicker 6s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    98% { opacity: 0.85; }
    99% { opacity: 1; }
}

.drift {
    animation: drift 16s ease-in-out infinite;
}

@keyframes drift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}
