.game-options {
    position: absolute;
    top: 10%;
    left: 12.5%;
    width: 75%;
    height: 75%;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0px 0px 16px 10px rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-options h2 {
    font-family: "Sour Gummy", serif;
    color: #75050a;
    font-size: 60px;
    padding: 32px;
    margin: 0;
    text-align: center;
}

.game-options-form {
    height: 80%;
    width: 100%;
}

.game-options-options {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding: 32px;
}

.game-options-series-advanced {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 32px 120px;
}

.game-options-series-part-text {
    font-size: 12px;
    padding-left: 80px;
    padding-right: 80px;
    text-align: center;
}

.game-options-buttons {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 24px;
    height: 20%;
}

.game-options-button {
    display: flex;
    flex-direction: column;
    font-family: "Sour Gummy", serif;
    height: 160px;
    width: 160px;
    padding: 8px;
    border-radius: 8px;
    justify-content: space-between;
    align-items: center;
    background-color: #aaa;
    color: #555;
}

.game-options-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80%;
}

.game-options-button-text {
    font-family: "Sour Gummy", serif;
    text-align: center;
}

.game-options-button-unselected {
    cursor: pointer;
}

.game-options-button-unselected:hover {
    font-weight: 800;
    box-shadow: 5px 10px 10px 0px rgba(255, 255, 255, 0.5);
    transform: translateY(-5px) scale(1.1);
    transition: all 0.3s ease;
}

.game-options-button-unselected:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 2px 5px 5px 0px rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.game-options-button-selected {
    background-color: #ffd902;
    color: #75050a;
}

/* Checkbox region */
.game-options-checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.game-options-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.game-options-checkbox-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border-radius: 8px;
    background-color: #eee;
}

.game-options-checkbox-container:hover input ~ .game-options-checkbox-checkmark {
    background-color: #ccc;
}

.game-options-checkbox-container input:checked ~ .game-options-checkbox-checkmark {
    background-color: #ffd902;
}

.game-options-checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.game-options-checkbox-container input:checked ~ .game-options-checkbox-checkmark:after {
    display: block;
}

.game-options-checkbox-container .game-options-checkbox-checkmark:after {
    left: 12px;
    top: -8px;
    width: 5px;
    height: 24px;
    border: solid black;
    border-width: 0 5px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}