@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&display=swap');

body {
    margin: 0;
    font-family: 'Inter', serif;
    letter-spacing: 0.2px;
    background: #0b0f14;
    color: #e6e6e6;
}
.page {
    max-width: 720px;
    margin: 100px auto;
    padding: 0 28px;
}
h1 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    margin: 0;
    font-size: 34px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #f5f5f5;
}
h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0 auto 12px;
    max-width: 520px;
    color: #f5f5f5;
}
.sub {
    text-align: center;
    margin-top: 6px;
    font-size: 14px;
    opacity: 0.65;
}
.divider {
    margin: 18px 0 22px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.18),
        transparent
    );
}
.nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
a {
    color: #cfd6ff;
    text-decoration: none;
    font-size: 15px;
    width: fit-content;
    transition: 0.15s ease;
    opacity: 0.85;
}
a:hover {
    opacity: 1;
    transform: translateX(4px);
}
.meta {
    margin-top: 28px;
    font-size: 13px;
    opacity: 0.55;
    line-height: 1.5;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
p {
    margin: 10px auto;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.78;
    max-width: 520px;
    text-align: left;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 16px auto;
    border-radius: 6px;
    opacity: 0.95;
}
code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
    color: #e6e6e6;
    letter-spacing: 0.2px;
}
ul {
    margin: 14px auto;
    padding-left: 18px;
    max-width: 520px;
}
li {
    position: relative;
    margin: 8px 0;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.78;
    color: #e6e6e6;
    transition: 0.15s ease;
    padding-left: 14px;
}
.note {
    margin: 10px auto;
    max-width: 520px;

    font-size: 14px;
    line-height: 1.6;
    opacity: 0.7;

    border-left: 2px solid rgba(255, 255, 255, 0.15);
    padding-left: 10px;

    text-align: left;
}
