body {
    background-image: url(../media/images/bg/bg_tickets.png);
    background-size: cover;
    margin: 0;
    font-family: Arial, sans-serif;
}

#gameBox {
    display: flex;
    flex-direction: column; /* Items standaard onder elkaar */
    gap: 2px; /* Ruimte tussen de divs */
    width: 90%;
    height: fit-content;
    margin: 0 auto; /* Centreer de box op de pagina */
    background-color: #363636;
    border-radius: 50px;
    padding: 50px;
    margin-top: 200px; 
}

#gameImg {
    max-width: 100%;
    border-radius: 100px;
}

/* Responsive layout: divs naast elkaar op grotere schermen */
@media (min-width: 768px) {
    #gameBox {
        flex-direction: row; /* Items naast elkaar */
        justify-content: space-between;
    }

    #gameBoxRight {
        width: 30%; /* Geef beide divs 45% van de breedte */

        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.vertInfoLine {
    height: 350px; /* % werkt niet, gebruik px om perfect te laten passen */
    margin-left: 5px;
    margin-right: 5px;
}

.horInfoLine {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Center the button horizontally and vertically */
#ticketButtonContainer {
    position: absolute;
    top: 29%;  /* Vertically center the button */
    left: 57%; /* Horizontally center the button */
    transform: translate(-50%, -50%); /* Adjust for exact centering */
    text-align: center;
}

#ticketButton {
    font-family: 'Orbitron', sans-serif;
    font-size: 50px;
    color: #ddd;
    background: rgba(0, 0, 0, 0.3);  /* Black with 70% transparency */
    border: 4px solid rgba(0, 0, 0, 0.9); /* Slightly darker border */
    border-radius: 45px;
    padding: 35px 40px;
    cursor: pointer;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease-in-out;
}

#ticketButton:hover {
    background: rgba(0, 0, 0, 0.9); /* Darker black on hover with less transparency */
    border-color: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
    color: #fff;
}


/* Move "Red Frontier Space Agency" div lower */
#gameSystemBox {
    font-family: 'Orbitron', sans-serif; /* Use your custom font */
    font-size: 2em; /* Adjust font size */
    color: #fff; /* Text color */
    margin-top: 30px; /* Adjust this value to move it lower */
    text-align: center;
}

.popup-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 2px solid #000;
    width: 50%;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    text-align: center;
    color: #ffffff; /* Lichtere tekstkleur */
}

.close-btn {
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #000000; /* Lichtere kleur voor sluitknop */
}

input, button, .price-info {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    color: #000000; /* Lichtere tekstkleur */
}

button {
    background-color: #dadada;
    color: #000000;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background-color: #ffffff;
}

.price-info {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff; /* Nog lichtere tekst voor prijsinfo */
}

.popup {
    display: none; /* Zorg ervoor dat de pop-up standaard verborgen is */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.594); /* Donkere achtergrond voor de pop-up */
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: relative;
    background-color: #494949;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
}
