* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #ffffff;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
    border: 2px solid #333;
    padding: 40px;
    background: #fafafa;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ascii-art {
    color: #333;
    font-size: 0.6rem;
    line-height: 1;
    margin-bottom: 40px;
    text-align: center;
    overflow-x: auto;
}

.status-section {
    margin: 40px 0;
}

.status-section h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.status-grid {
    display: grid;
    gap: 15px;
}

.status-item {
    display: grid;
    grid-template-columns: 200px 30px 1fr;
    align-items: center;
    padding: 20px;
    border: 2px solid #e0e0e0;
    background: #fff;
    transition: all 0.3s ease;
}

.status-item:hover {
    border-color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.status-indicator {
    font-size: 1.5rem;
    color: #999;
}

.value {
    font-size: 0.9rem;
    color: #666;
}

.links {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.links a {
    color: #333;
    text-decoration: none;
    padding: 15px;
    border: 2px solid #333;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    background: #fff;
}

.links a:hover {
    background: #333;
    color: #fff;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
    color: #999;
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    
    .ascii-art {
        font-size: 0.4rem;
    }
    
    .status-item {
        grid-template-columns: 150px 30px 1fr;
        padding: 15px;
    }
}
.latest-post-section {
    margin: 40px 0;
}

.latest-post-section h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.latest-post {
    padding: 20px;
    border: 2px solid #e0e0e0;
    background: #fff;
    transition: all 0.3s ease;
}

.latest-post:hover {
    border-color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.post-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
    gap: 20px;
}

.post-title {
    font-size: 0.95rem;
    font-weight: bold;
    flex: 1;
}

.post-date {
    font-size: 0.8rem;
    color: #999;
    white-space: nowrap;
    letter-spacing: 1px;
}

.loading, .error {
    font-size: 0.85rem;
    color: #999;
}

@media (max-width: 600px) {
    .post-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
