* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: #1e293b;
    padding: 20px 0;
    border-bottom: 1px solid #334155;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-weight: bold;
    font-size: 18px;
    color: #e2e8f0;
    text-decoration: none;
}

nav a {
    margin-left: 20px;
    color: #94a3b8;
    text-decoration: none;
}

nav a:hover {
    color: #38bdf8;
}

footer {
    margin-top: 80px;
    padding: 30px 0;
    border-top: 1px solid #334155;
    text-align: center;
    color: #64748b;
}

article {
    margin-top: 50px;
    line-height: 1.7;
}

.meta {
    color: #94a3b8;
    font-size: 14px;
}

.post-list {
    list-style: none;
    padding: 0;
}

.post-list li {
    margin-bottom: 15px;
}

.post-list a {
    color: #38bdf8;
    text-decoration: none;
}

.post-list a:hover {
    text-decoration: underline;
}

pre {
    background: #1e293b;
    padding: 15px;
    border-radius: 6px;
    overflow-x: auto;
}

.hero {
    margin-top: 40px;
}

.home-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.card {
    background: #1e293b;
    padding: 25px;
    border-radius: 8px;
    transition: 0.3s;
}

.card:hover {
    background: #334155;
}

.recent-posts {
    margin-top: 40px;
}

.tags a {
    color: #38bdf8;
    text-decoration: none;
    font-size: 14px;
}

.tags a:hover {
    text-decoration: underline;
}

.pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.pagination a {
    color: #38bdf8;
    text-decoration: none;
}

.pagination a:hover {
    text-decoration: underline;
}
