Прошу критики_[9/20] селекторы часть 2 100%

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(:nth-of-type(4)):not(:nth-of-type(1)) {
margin-left: -15px;
}

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

.cards .nine {
margin-right: 30px;
margin-left: 15px;
}

.cards li:nth-of-type(odd).diamond {
background-color: #0099ff;
}

.cards:not(:nth-of-type(2)) .seven {
background-color: #ff3300;
}

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

как где-то кто-то говорил решений может быть несколько, мое отличается =)

li:not(:nth-child(2)) {
    margin-left: -15px;
}li:not(:nth-child(5)) {
    width: 36px;
    height: 54px;
}
li:nth-of-type(4) {
    margin-right: 30px;
    margin-left: 15px;
}
.diamond:nth-child(even) {
    background-color: #0099ff; /*синие бубны*/
}
li:nth-child(3):not(.club){/*2й столбец красный фон*/
    background-color: #ff3300;
}
ul:nth-of-type(4) li:nth-child(3n-2){/*нижний ряд зеленые*/
    background-color: #339933;
}

Вот ещё вариант.

li:not(:nth-child(2)) {
margin-left: -15px;
}

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

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

.cards li:nth-of-type(odd).diamond {
background-color: #0099ff;
}

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

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