#WWM-Screen {
    background-color: #2D2B57;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    position: absolute;
    top: 50px;
    bottom: 0px;
    right: 0px;
    left:0px;
    display: none;
}

.container {
    background-color: #3A3A6A;
    border-radius: 10px;
    padding: 20px;
    display: inline-block;
    width: 60%;
}
.loading-message {
    display: none;
    font-size: 1.5em;
    margin-top: 20px;
}
.intro-container {
    text-align: center;
}
.intro-title {
    font-size: 2em;
    margin-bottom: 20px;
}
.intro-description {
    font-size: 1.2em;
    margin-bottom: 20px;
}
.start-button {
    background-color: #FFAA00;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
}
.start-button:hover {
    background-color: #FFC107;
}
.question-container {
    background-color: #4A4A80;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}
.options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.option {
    background-color: #3A3A6A;
    border: 2px solid #555;
    border-radius: 10px;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    width: 40%;
    position: relative;
}
.option:before, .option:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}
.option:before {
    top: 0;
    left: -20px;
    border-width: 20px 20px 0 0;
    border-color: #3A3A6A transparent transparent transparent;
}
.option:after {
    bottom: 0;
    right: -20px;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent #3A3A6A transparent;
}
.option:hover {
    background-color: #555;
}
.amount {
    background-color: #FFAA00;
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: 20px;
    font-size: 1.5em;
}
#theWWMQuestion{
    color: inherit;
}
.feedback-container {
    background-color: #4A4A80;
    border-radius: 10px;
    padding: 10px;
    margin-top: 20px;
    display: none;
}
.next-button {
    background-color: #FFAA00;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 20px;
    display: none;
}
.next-button:hover {
    background-color: #FFC107;
}
.lifelines {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}
.lifeline {
    background-color: #FFAA00;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
}
.lifeline:hover {
    background-color: #FFC107;
}
.walk-away {
    background-color: #FFAA00;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 20px;
    display: none;
}
.walk-away:hover {
    background-color: #FFC107;
}
.option.disabled {
    pointer-events: none;
    opacity: 0.6;
}
