/* retro.css */

body {
    background-color: #c0c0c0; /* Classic grey background */
    color: #000000;
    font-family: "Times New Roman", Times, serif;
    margin: 20px;
}

/* The Container - usually fixed width and centered */
#container {
    width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 2px inset #ffffff; /* Gives that "recessed" look */
    padding: 15px;
}

/* Headers with that specific blue/purple vibe */
h1 {
    color: #000080; /* Navy blue */
    text-align: center;
    text-decoration: underline;
    font-family: Arial, sans-serif;
}

h2 {
    background-color: #000080;
    color: #ffffff;
    padding: 5px;
    font-size: 1.2em;
}

/* Classic Sidebar Navigation */
nav {
    float: left;
    width: 150px;
    border: 2px outset #eeeeee;
    background-color: #d3d3d3;
    padding: 10px;
    margin-right: 20px;
}

/* Hyperlinks - the most important part! */
a {
    color: #0000ff; /* Bright blue */
    font-weight: bold;
}

a:visited {
    color: #800080; /* Classic purple */
}

a:hover {
    color: #ff0000; /* Red hover was a common choice */
    text-decoration: none;
}

/* Retro Buttons */
button {
    background-color: #c0c0c0;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
    padding: 4px 10px;
    cursor: pointer;
}

button:active {
    border: 2px inset #ffffff;
}

/* The marquee-style announcement area */
.news-flash {
    border: 1px dashed red;
    padding: 10px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ff0000;
}

/* Clearfix for the floated nav */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

footer {
    text-align: center;
    font-size: 0.8em;
    margin-top: 20px;
    border-top: 1px solid #808080;
    padding-top: 10px;
}
.counter-box {
    text-align: center;
    margin: 20px auto;
    width: 150px;
}

.counter-label {
    font-family: "Arial", sans-serif;
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
}

#hit-counter {
    background-color: #000000;
    color: #00ff00; /* Neon green */
    font-family: "Courier New", Courier, monospace;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 3px;
    padding: 5px 10px;
    border: 3px inset #808080;
    display: inline-block;
    text-shadow: 0 0 5px #00ff00; /* Makes it "glow" like an old monitor */
}