body {
    margin: 0;
    background-color: #0d0d26; /* Very dark background */
    color: #e0e0e0;
}

.container {
    max-width: 960px;
    width: 90%;
    margin: 0 auto;
    padding: 10px;
}

header {
    background-color: transparent;
    color: #ff1aff; /* Bright magenta */
    text-align: left;
    padding: 5px 0;
    font-size: 1.5em;
    border-bottom: 2px solid #ff1aff;
    margin-bottom: 40px;
}

main {
    padding: 0;
}

footer {
    background-color: transparent;
    color: #00ffee; /* Bright cyan */
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    font-size: 0.9em;
    border-top: 2px solid #00ffee;
}

footer p {
    margin: 0;
}

footer a {
    color: #ffff33; /* Bright yellow */
    text-decoration: none;
}

.game-module {
    margin-bottom: 50px;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
}

.game-module h2 {
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 10px;
    font-size: 1.6em;
}

/* New Module Colors - using border colors */
.module-1 h2 { border-bottom: 4px solid #ff6b33; color: #ff6b33; }
.module-2 h2 { border-bottom: 4px solid #33ffa8; color: #33ffa8; }
.module-3 h2 { border-bottom: 4px solid #3366ff; color: #3366ff; }
.module-4 h2 { border-bottom: 4px solid #ff33cc; color: #ff33cc; }


.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

@media (max-width: 480px) {
    .game-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.game-card {
    display: block;
    background-color: #2c2c2c;
    border-radius: 0;
    overflow: hidden;
    text-align: left;
    text-decoration: none;
    border: 1px solid #444;
    border-left: 5px solid #ffff33; /* Yellow accent */
}

.game-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.game-card p {
    color: #e6e6ff;
    padding: 12px 15px;
    margin: 0;
    font-size: 1em;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: #331a66;
}

/* Styles for other pages like contact, privacy, tos */
main h1, main h2, main h3 {
    color: #00ffee;
}

main p {
    line-height: 1.8;
    margin-bottom: 1.5em;
    color: #ccc;
}

main a {
    color: #ff1aff;
}
