/* Retro 90s Style Sheet */

body {
    background-color: #000000;
    background-image: linear-gradient(45deg, #111 25%, transparent 25%, transparent 75%, #111 75%, #111), 
                      linear-gradient(45deg, #111 25%, transparent 25%, transparent 75%, #111 75%, #111);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    color: #00FF00; /* Matrix green text or just bright neon */
    font-family: "Courier New", Courier, monospace;
    margin: 0;
    padding: 20px;
}

/* Container to center content and give it that "page" feel */
.container {
    width: 800px;
    margin: 0 auto;
    background-color: #c0c0c0; /* Classic Windows 95 gray */
    color: #000000;
    border: 2px solid #ffffff;
    border-right-color: #404040;
    border-bottom-color: #404040;
    padding: 10px;
}

h1, h2, h3 {
    font-family: "Times New Roman", Times, serif;
    text-align: center;
    color: #000080; /* Navy Blue */
    text-shadow: 2px 2px #808080;
}

h1 {
    background-color: #000080;
    color: #ffffff;
    padding: 5px;
    border: 2px outset #ffffff;
}

/* Links */
a {
    color: #0000FF;
    text-decoration: underline;
}

a:visited {
    color: #800080;
}

a:hover {
    color: #FF0000;
    cursor: help; /* Retro cursor */
}

/* Navigation Bar */
nav {
    text-align: center;
    margin-bottom: 20px;
    border: 2px groove #ffffff;
    padding: 5px;
    background-color: #d4d0c8;
}

nav a {
    font-weight: bold;
    margin: 0 10px;
    font-size: 1.2em;
}

/* Marquee simulation */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: #000000;
    color: #FFFF00;
    border: 2px inset #ffffff;
    margin-bottom: 20px;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Retro Buttons */
.retro-btn {
    background-color: #c0c0c0;
    border: 2px solid #ffffff;
    border-right-color: #404040;
    border-bottom-color: #404040;
    padding: 5px 10px;
    text-decoration: none;
    color: black !important;
    font-family: sans-serif;
    font-weight: bold;
    cursor: pointer;
}

.retro-btn:active {
    border: 2px solid #404040;
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
}

/* Horizontal Rule */
hr {
    border: 0;
    border-top: 2px solid #808080;
    border-bottom: 2px solid #ffffff;
    height: 2px;
}

/* Footer */
footer {
    text-align: center;
    font-size: 0.8em;
    margin-top: 20px;
    border-top: 2px groove white;
    padding-top: 10px;
}

/* Games List */
.game-list {
    list-style-type: square;
    padding-left: 40px;
}

.game-item {
    margin-bottom: 10px;
}

/* Blinking Text */
.blink {
    animation: blinker 1s linear infinite;
    color: red;
    font-weight: bold;
}

@keyframes blinker {
    50% { opacity: 0; }
}
