.word-selector-game {
    font-family: Montserrat, Arial, Helvetica, sans-serif;;
    max-width: 600px;
    margin: 20px auto;
    padding: 70px 40px;
    border: 0px;
    border-radius: 2px;
    background-color: #f5f5f5;
    display: block;
    position: relative;
    text-align: center;
}

.word-selector-game:after, .word-selector-game:before { border-color: #000; width: 56px; height: 56px; content: ""; display: block; position: absolute; box-sizing: border-box; }
.word-selector-game:after { top: 0px; right: 0px; border-top: 10px solid; border-right: 10px solid; }
.word-selector-game:before { bottom: 0px; left: 0px; border-bottom: 10px solid; border-left: 10px solid; }

.welcome-screen, .score-screen {
    text-align: center;
    padding: 40px 20px;
}
.welcome-screen h2 {
    font-size: 20px;
    margin: 10px 0px;
    color: #333;
    font-weight: bold;
}

.welcome-screen p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #333;
    font-weight: normal;
}

.score-screen h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
}

.source-sentence {
    margin-bottom: 2px;
    padding: 12px 20px;
    line-height: 1.6;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid #959595;
}

.word {
    display: inline-block;
    padding: 1px 2px;
    margin: 1px 0px;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.word:hover {
    background-color: #e0e0e0;
}

.word.selected {
    background-color: #009896;
    color: #fff;
}

.target-sentence {
    min-height: 72px;
    padding: 14px 10px;
    margin: 2px 0px 0px 0px;
    border-radius: 1px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.selected-words {
    text-align: center;
}

.selected-word {
    display: inline-block;
    padding: 4px 14px;
    margin: 2px;
    background-color: #009896;
    color: #fff;
    border-radius: 2px;
    text-transform: lowercase;
}
.selected-word.blank {
    padding: 2px 14px;
}

.message {
    margin: 0px 0px 2px 0px;
    padding: 10px;
    border-radius: 2px;
    min-height: 20px;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
}

.message.success {
    background-color: #fff;
    color: #dcb51a;
    text-align: center;
}

.message.info {
    color: #646464;
}

.buttons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

button {
    padding: 8px 32px;
    margin: 6px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
    background-color: #dcb51a;
    color: #fff;
}
button:hover {
    filter: brightness(110%);
}

.start-button {
    font-size: 18px;
    padding: 12px 42px;
}

.reset-button {
    background-color: #9E9E9E;
}


@media (max-width: 767px) {
    .word-selector-game { padding : 34px 20px; }
    .target-sentence { min-height: 62px; padding: 2px 2px; margin: 6px 0px 0px 0px; }
    .message { font-size: 12px; margin: 4px 0px 2px 0px; }
    .buttons { margin-top: 2px; }
    button { font-size: 14px; padding: 8px 14px; }
    .welcome-screen, .score-screen { padding: 20px 0px; }
}
