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

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.banner {
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.logo {
    width: 250px;
    display: block;
    margin: 0 auto 20px;
}

.banner h1 {
    font-size: 2.5em;
}

.banner p {
    font-size: 1.2em;
}

.games {
    text-align: center;
    padding: 50px 20px;
}

.games h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.games p {
    margin-bottom: 30px;
}

.game-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.game-item {
    background-color: white;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.play-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    display: inline-block;
    text-align: center;
    /* width: 100px; */
}

.contact-form {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.contact-form form {
    display: inline-block;
    text-align: left;
    max-width: 400px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer-links a {
    color: white;
    margin: 0 15px;
}

.footer-logos img {
    margin: 10px 10px;
    vertical-align: middle;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    max-width: 90%;
}

.popup-toggle {
    display: none;
}

/* When the checkbox is checked, show the corresponding popup */
#game1-toggle:checked~#game1-popup,
#game2-toggle:checked~#game2-popup,
#game3-toggle:checked~#game3-popup {
    display: flex;
}

/* Close button style */
.close-popup {
    background-color: red;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

.seo-text {
    font-family: Arial, sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.seo-text h1,
.seo-text h2 {
    color: #003366;
    text-align: left;
}

.seo-text p {
    color: #333333;
    text-align: left;
}

.blue-line {
    width: 100%;
    height: 4px;
    background-color: #003366;
    margin-bottom: 20px;
    margin-top: 25px;
}