body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #0B3D0B; /* deep jungle green */
    color: #E0E5D1;      /* light beige text */
}

header {
    background: #145214; /* darker forest green */
    color: #9ACD32;      /* jungle accent */
    text-align: center;
    padding: 1rem;
}

main {
    max-width: 900px;
    margin: 20px auto;
    padding: 0 15px;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: #9ACD32; /* accent for headings */
    margin-bottom: 15px;
}

.games {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.game {
    background: #1B4D1B; /* jungle card background */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5); /* subtle shadow */
    text-align: center;
    width: 200px;
    padding: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.game:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(154, 205, 50, 0.5); /* jungle accent glow */
}

.game img {
    width: 100%;
    border-radius: 5px;
    filter: brightness(0.95); /* subtle darken for jungle feel */
}

.game-title {
    margin: 10px 0 5px;
    font-weight: bold;
    color: #9ACD32;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    text-decoration: none;
    color: #9ACD32;
    font-weight: bold;
}

footer {
    background: #145214;
    color: #E0E5D1;
    text-align: center;
    padding: 15px;
}

footer a {
    color: #9ACD32;
    text-decoration: none;
}

@media (max-width: 600px) {
    .games {
        flex-direction: column;
        align-items: center;
    }

    .game {
        width: 90%;
    }
}
