* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #FAFAF8;
    color: #333;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Gradient Header */
.header {
    background: #F4F3F1;
    padding: 60px 20px 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 145px;
}

.logo {
    display: flex;
    gap: 8px;
    align-items: center;
}

.logo-block {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
}

.logo-block.small {
    width: 20px;
    height: 20px;
}

.logo-text {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 160px;
    font-weight: 500;
    color: #E7E5E0;
    letter-spacing: 1px;
    line-height: 1;
    clip-path: inset(0 0 30% 0);
}

/* Main Content */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    flex: 1;
}

/* Link List */
.link-list {
    list-style: none;
}

.link-item {
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.link-item:last-child {
    border-bottom: none;
}

.link-title {
    font-size: 18px;
    font-weight: 400;
    color: #1B1B1B;
    text-decoration: none;
    display: block;
}

.link-title:hover {
    color: #0066cc;
}

.link-description {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
    display: block;
}

.link-description a {
    color: #666;
    text-decoration: none;
}

.link-description a:hover {
    color: #0066cc;
}

.link-arrow {
    color: #999;
    margin-left: 4px;
}

/* Date Navigation */
.date-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    margin-top: 20px;
    border-top: 1px solid #eee;
}

.date-nav a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.date-nav a:hover {
    color: #0066cc;
}

.date-current {
    font-size: 14px;
    color: #999;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: #999;
    border-top: 1px solid #eee;
}

.footer a {
    color: #666;
    text-decoration: none;
}

.footer a:hover {
    color: #0066cc;
}

.footer .separator {
    margin: 0 8px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-state p {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 600px) {
    .header {
        padding: 40px 15px 0px 15px;
        height: 80px;
    }

    .logo-text {
        font-size: 80px;
        letter-spacing: 1px;
    }

    .content {
        padding: 15px;
    }

    .link-title {
        font-size: 16px;
    }
}
