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

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

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

main {
    padding: 0;
}

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

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 #cc66ff; color: #cc66ff; }
.module-2 h2 { border-bottom: 4px solid #33ffcc; color: #33ffcc; }
.module-3 h2 { border-bottom: 4px solid #33aaff; color: #33aaff; }
.module-4 h2 { border-bottom: 4px solid #ff33aa; color: #ff33aa; }


.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: #f0e6ff;
    padding: 12px 15px;
    margin: 0;
    font-size: 1em;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: #3a1a66;
}

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

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

main a {
    color: #9933ff;
}
