9/20 Просьба оценить код

Ребята,оцените пожалуйста код,знаю что эту строку можно сократить
.diamond:not(.nine):not(.seven):not(.jack):not(.king)
но может еще что то?
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(n+2){
margin-left: -15px;
}

ul li:not(:nth-of-type(4)) {
width: 36px;
height: 54px;
}

ul li:nth-of-type(4) {
margin-right: 30px;
margin-left: 15px;
}

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

.seven:not(.club){
background-color: #ff3300;
}

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

Все делают по-разному.
Если есть желание сократить код – сравните с

этим вариантом
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;
}

.cards li:not(:first-of-type) {
    margin-left: -15px;
}

.cards li:not(.nine) {
    width: 36px;
    height: 54px;
}

.cards li:nth-of-type(4) {
    margin-right: 30px;
    margin-left: 15px;
}

.cards li:nth-child(even).diamond {
    background-color: #0099ff;
}

.cards li:not(.club).seven{
    background-color: #ff3300;
}

.cards:last-of-type li:nth-of-type(3n) {
    background-color: #339933;
}

Спасибо