body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #ffe6f2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#game-container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
    text-align: center;
    position: relative;
    display: none;
}

#game-image {
    width: 100%;
    height: 0;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background-size: cover;
    background-position: center;
    border-radius: 15px 15px 0 0;
}

#game-content {
    padding: 20px;
}

#game-text {
    margin-bottom: 20px;
    color: #ff66b2;
    font-size: 1.2em;
}

#game-choices button {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background-color: #ff66b2;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1em;
}

#game-choices button:hover {
    background-color: #ff99cc;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 80%;
    max-width: 800px;
}

.modal-content img {
    width: 100%;
    height: auto;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #ff66b2;
}

/* Start Button Styles */
#start-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#start-button {
    background-color: #ff66b2;
    color: white;
    border: none;
    border-radius: 50px; /* Oval shape */
    padding: 15px 30px;
    font-size: 1.2em;
    cursor: pointer;
}

#start-button:hover {
    background-color: #ff99cc;
}