* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;

    background: #000000;
    color: #00ff66;

    font-family: "Courier New", Courier, monospace;

    padding: 40px 20px;

    cursor: crosshair;
}

.site {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

/* ---------- Header ---------- */

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    margin: 0 0 10px 0;

    font-size: 60px;
    line-height: 1;

    color: #00ff66;

    text-shadow:
        0 0 5px #00ff66,
        0 0 15px #00ff66,
        0 0 30px #00ff66;
}

.header h2 {
    margin: 0 0 30px 0;

    font-size: 20px;
    font-weight: normal;
}

/* ---------- Navigation ---------- */

.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 50px;
}

.navigation a {
    display: inline-block;

    color: #00ff66;

    border: 2px solid #00ff66;

    padding: 9px 18px;

    text-decoration: none;

    transition:
        background-color 0.25s,
        color 0.25s,
        box-shadow 0.25s;
}

.navigation a:hover {
    background: #00ff66;

    color: #000000;

    box-shadow:
        0 0 10px #00ff66,
        0 0 20px #00ff66;
}

/* ---------- Blog Header ---------- */

.blog-header {
    border-top: 1px solid #00ff66;
    border-bottom: 1px solid #00ff66;

    padding: 25px 0;

    margin-bottom: 35px;
}

.blog-header h3 {
    margin: 0 0 10px 0;

    font-size: 28px;
}

.blog-header p {
    margin: 0;

    color: #d0ffd0;

    font-size: 16px;

    line-height: 1.6;
}

/* ---------- Section ---------- */

.section-title {
    margin: 0 0 20px 0;

    font-size: 18px;
}

/* ---------- Post Card ---------- */

.post {
    border: 1px solid #00ff66;

    padding: 25px;

    margin-bottom: 25px;

    transition:
        box-shadow 0.25s,
        transform 0.25s;
}

.post:hover {
    box-shadow:
        0 0 10px rgba(0, 255, 102, 0.25);

    transform: translateY(-2px);
}

.post h4 {
    margin: 0 0 10px 0;

    font-size: 24px;

    color: #00ff66;
}

.post h4 a {
    color: inherit;

    text-decoration: none;
}

.post h4 a:hover {
    text-shadow:
        0 0 5px #00ff66,
        0 0 15px #00ff66;
}

.post-meta {
    margin-bottom: 18px;

    color: #6ab8ff;

    font-size: 14px;
}

.post p {
    margin: 0 0 20px 0;

    color: #d8ffd8;

    line-height: 1.7;
}

.read-more {
    color: #00ff66;

    text-decoration: none;

    font-weight: bold;
}

.read-more:hover {
    text-shadow:
        0 0 5px #00ff66,
        0 0 15px #00ff66;
}

/* ---------- Empty State ---------- */

.empty {
    border: 1px dashed #00ff66;

    padding: 25px;

    color: #6dff6d;

    line-height: 1.7;
}

/* ---------- Mobile ---------- */

@media (max-width: 700px) {

    body {
        padding: 25px 12px;
    }

    .header h1 {
        font-size: 42px;
    }

    .header h2 {
        font-size: 16px;
    }

    .navigation {
        gap: 8px;
    }

    .navigation a {
        padding: 8px 12px;
        font-size: 14px;
    }

    .blog-header h3 {
        font-size: 22px;
    }

    .post {
        padding: 18px;
    }

    .post h4 {
        font-size: 20px;
    }
}

@media (max-width: 400px) {

    .header h1 {
        font-size: 34px;
    }

    .header h2 {
        font-size: 14px;
    }

    .navigation a {
        font-size: 13px;
        padding: 7px 10px;
    }
}
