/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    background-image: url('../images/bg-tile.png');
    background-repeat: repeat;
    color: #d4d4d4;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

a {
    color: #66ccff;
    text-decoration: underline;
}

a:hover {
    color: #ff6699;
}

a:visited {
    color: #cc99ff;
}

/* Main Container */
#container {
    width: 750px;
    max-width: 95%;
    margin: 20px auto;
    padding: 0;
}

/* Header */
#header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid #333;
    margin-bottom: 20px;
}

#header .logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    image-rendering: pixelated;
}

#header h1 {
    font-family: 'Courier New', Courier, monospace;
    font-size: 28px;
    color: #66ccff;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 10px;
    text-shadow: 2px 2px 0px #003366;
}

#header .tagline {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
    font-style: italic;
}

/* Decorative Dividers */
.divider {
    text-align: center;
    padding: 10px 0;
    color: #444;
    font-size: 14px;
    letter-spacing: 6px;
    user-select: none;
}

/* Content Sections */
.section {
    border: 1px solid #333;
    background-color: #111;
    margin-bottom: 20px;
    padding: 20px;
}

.section-header {
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    color: #66ccff;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-bottom: 1px dashed #333;
    padding-bottom: 10px;
    margin-bottom: 15px;
    text-align: center;
}

/* Games Section */
.game-entry {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.game-entry:last-child {
    margin-bottom: 0;
}

.game-thumb {
    width: 150px;
    min-width: 150px;
    height: 100px;
    border: 1px solid #333;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 12px;
    overflow: hidden;
}

.game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info h3 {
    font-family: 'Courier New', Courier, monospace;
    color: #ff6699;
    font-size: 16px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-info .game-status {
    display: inline-block;
    font-size: 11px;
    color: #0a0a0a;
    background-color: #66ccff;
    padding: 1px 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.game-info p {
    font-size: 14px;
    color: #aaa;
}

/* Links / Buttons Section */
.links-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
}

.links-list li a {
    display: inline-block;
    border: 1px solid #333;
    background-color: #1a1a1a;
    color: #66ccff;
    padding: 8px 16px;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background-color 0.15s, color 0.15s;
}

.links-list li a:hover {
    background-color: #66ccff;
    color: #0a0a0a;
}

/* 88x31 Buttons Row */
.buttons-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.buttons-row img {
    width: 88px;
    height: 31px;
    image-rendering: pixelated;
    border: none;
}

/* Footer */
#footer {
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid #333;
    margin-top: 10px;
    font-size: 12px;
    color: #555;
}

#footer .visitor-counter {
    margin-top: 10px;
    font-size: 11px;
    color: #444;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Marquee / Scrolling Text */
.marquee-bar {
    overflow: hidden;
    border: 1px solid #333;
    background-color: #111;
    padding: 6px 0;
    margin-bottom: 20px;
    white-space: nowrap;
}

.marquee-bar .marquee-text {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-size: 13px;
    color: #ff6699;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

/* Under Construction Banner */
.under-construction {
    text-align: center;
    padding: 10px;
    font-size: 13px;
    color: #ffcc00;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 600px) {
    #header h1 {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .game-entry {
        flex-direction: column;
    }

    .game-thumb {
        width: 100%;
        min-width: unset;
        height: 120px;
    }

    .links-list {
        flex-direction: column;
        align-items: center;
    }
}