@font-face { font-family: 'BlurLight'; src: url(../fonts/blurlight.ttf); }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { background: #0d0d0d; color: #c0c0c0; font-family: 'BlurLight', monospace; }
body { padding: env(safe-area-inset-top) 28px env(safe-area-inset-bottom); overflow-y: auto; }

.page {
    max-width: 480px;
    margin: 0 auto;
    padding: 48px 0 64px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.top { animation: fadeUp 0.4s ease both; }
.back { font-size: 12px; color: #c0c0c0; text-decoration: none; opacity: 0.3; letter-spacing: 2px; transition: opacity 0.2s; }
.back:hover { opacity: 0.8; }

.header { display: flex; flex-direction: column; gap: 6px; animation: fadeUp 0.5s ease 0.05s both; }
.title { font-size: 13px; opacity: 0.35; letter-spacing: 3px; }
.subtitle { font-size: 20px; letter-spacing: 1px; opacity: 0.7; }

.log { display: flex; flex-direction: column; gap: 36px; animation: fadeUp 0.5s ease 0.1s both; }

.month { display: flex; flex-direction: column; gap: 14px; }

.month-label {
    font-size: 12px;
    opacity: 0.3;
    letter-spacing: 3px;
    text-transform: lowercase;
    border-bottom: 1px solid rgba(200,200,200,0.08);
    padding-bottom: 10px;
}

.entries {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.entries li {
    font-size: 15px;
    letter-spacing: 0.3px;
    line-height: 1.5;
    opacity: 0.7;
    padding-left: 16px;
    position: relative;
}

.entries li::before {
    content: '↓';
    position: absolute;
    left: 0;
    opacity: 0.3;
    font-size: 12px;
}
