/* n-gate.com inspired minimal design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', 'Monaco', monospace;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    border-bottom: 2px solid #000;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

header h1 {
    font-size: 2.5em;
    font-weight: normal;
    margin-bottom: 5px;
}

header p {
    font-size: 1.2em;
    color: #666;
    font-style: italic;
}

.intro {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f5f5f5;
    border-left: 4px solid #000;
}

.intro p {
    font-size: 1.1em;
    line-height: 1.5;
}

.digest {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

.digest:last-child {
    border-bottom: none;
}

.digest h2 {
    font-size: 1.4em;
    font-weight: normal;
    margin-bottom: 15px;
    color: #333;
}

.digest .date {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.digest .content {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 15px;
}

.digest .content p {
    margin-bottom: 15px;
}

.digest .hn-link {
    font-size: 0.9em;
    color: #666;
    text-decoration: none;
    border-bottom: 1px dotted #999;
}

.digest .hn-link:hover {
    color: #000;
    border-bottom: 1px solid #000;
}

footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    text-align: center;
    color: #666;
    font-size: 0.9em;
}

/* Responsive design */
@media (max-width: 600px) {
    body {
        padding: 15px;
    }
    
    header h1 {
        font-size: 2em;
    }
    
    .intro {
        padding: 15px;
    }
}

/* Print styles */
@media print {
    body {
        max-width: none;
        margin: 0;
        padding: 0;
    }
    
    header {
        border-bottom: 2px solid #000;
    }
    
    .digest {
        page-break-inside: avoid;
    }
}