@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #e0e0e0; /* Light gray background */
    color: #333;
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 2rem;
}

.header {
    background-color: #333;
    color: #fff;
    padding: 2rem;
    text-align: center;
    border-bottom: 5px solid #b22222; /* NES Red */
}

.header .logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 2.5rem;
    text-decoration: none;
    color: #fff;
}

.navbar {
    background-color: #444;
    padding: 0.5rem 2rem;
}

.nav-links {
    display: flex;
    justify-content: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
}

h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.5rem;
    color: #333;
    border-bottom: 3px solid #ccc;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}

.forum-category {
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    margin-bottom: 1.5rem;
}

.forum-category h3 {
    background-color: #555;
    color: #fff;
    padding: 0.8rem;
    margin: 0;
    font-family: 'Press Start 2P', cursive;
    font-size: 1rem;
}

.thread-list .thread {
    padding: 0.8rem;
    border-bottom: 1px solid #ccc;
}

.thread-list .thread:last-child {
    border-bottom: none;
}

.thread-list .thread a {
    text-decoration: none;
    color: #b22222;
    font-weight: 700;
}

.thread-meta {
    font-size: 0.8rem;
    color: #777;
}

.post {
    border: 1px solid #ccc;
    margin-bottom: 1rem;
}

.post-author {
    background-color: #f4f4f4;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
}

.post-author .author-name {
    font-weight: 700;
    color: #333;
}

.post-content {
    padding: 1rem;
}

.footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}