Селекторы. Часть 2. 9/20. Неверный цвет в проверке

html,
body {
margin: 0;
padding: 0;
font-family: “Arial”, sans-serif;
}

body {
min-width: 550px;
min-height: 250px;
padding: 10px;
}

.cards {
width: 500px;
}

.cards li::before {
font-family: “Courier”, monospace;
}

li:nth-of-type(2),
li:nth-of-type(3),
li:nth-last-of-type(5),
li:nth-last-of-type(4),
li:nth-last-of-type(3),
li:nth-last-of-type(2),
li:nth-last-of-type(1) {
margin-left: -15px;
}

.cards li:not(:nth-child(5)) {
width: 36px;
height: 54px;
}

.cards li:nth-child(5) {
margin-right: 30px;
margin-left: 15px;
}

.diamond:not(.nine):not(.king):not(.jack) {
background-color: #0099ff;
}

li:nth-of-type(2):not(.club):not(.diamond) {
background-color: #ff3300;
}

ul:last-of-type li:last-of-type,
ul:last-of-type li:nth-last-of-type(4),
ul:last-of-type li:nth-of-type(3) {
background-color: #339933;
}

у 7 буби отменила выделение оранжевым. и поставила как надо в CSS голубой фон, исключая некоторые карт. Почему при отображении образца показывается цвет карты красный?