/* Base styles */
body {
    background-color: #c6c6c6; /* Main grey background */
    font-family: 'Courier New', Courier, monospace; /* Retro-style font */
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Top navigation bar */
.navbar {
    background-color: #eeeeee; /* Light grey nav bar */
    padding: 5px 0;
    font-size: 12px;
    font-weight: bold;
    border-bottom: 2px solid #000;
}

.navbar a, .navbar span {
    text-decoration: none;
    margin: 0 5px;
}

/* Colors for the nav links, based on the image */
.nav-mspa   { color: #000000; }
.nav-archive { color: #008200; }
.nav-new     { color: #008200; }
.nav-map     { color: #ff6a00; }
.nav-log     { color: #ff6a00; }
.nav-search  { color: #000082; }
.nav-shop    { color: #820000; }
.nav-music   { color: #820082; }
.nav-forums  { color: #f2a400; }
.nav-tickers { color: #008282; }
.nav-credits { color: #828282; }

/* Main content container */
.main-container {
    width: 950px; /* Standard MSPA width */
    margin: 20px auto; /* Centers the container */
    background-color: #ffffff; /* White content area */
    border: 2px solid #000;
    padding: 20px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

/* Title text like "Try again." */
.content-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* The main comic/flash image */
.main-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc; /* Simple border for placeholder */
    /* This helps pixel art look sharp */
    image-rendering: pixelated; 
}

/* The "> Command" link */
.command {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}

.command a {
    color: #0000ff; /* Standard blue link */
    text-decoration: none;
}
.command a:hover {
    text-decoration: underline;
}

/* Links at the bottom of the content block */
.game-links {
    margin-top: 30px;
    font-size: 12px;
}

.game-links a {
    color: #0000ff;
    margin: 0 5px;
}

/* Footer area for banners */
.footer {
    width: 950px;
    margin: 20px auto;
}

.footer img {
    max-width: 100%;
    margin-bottom: 10px;
}

.copyright {
    font-size: 11px;
    color: #000;
}