17/17 Игра теней: можно ли так?

html,
body {
width: 300px;
margin: 0;
padding: 0;
font-size: 18px;
font-family: “Arial”, sans-serif;
background: #ecf0f1;
position: relative;
}

.btn {
width: 250px;
margin: 0 25px;
margin-top: 100px;
padding: 20px 0;
line-height: 20px;
text-align: center;
text-transform: uppercase;
color: white;
background: #2c3e50;
cursor: pointer;
box-shadow:
0 20px 0 -10px #2980b9,
0 40px 0 -20px #3498db,
0 -20px 0 -10px #c0392b,
0 -40px 0 -20px #e74c3c,
inset 0px -5px 0 0 #2ecc71,
inset 0px -60px 0 -5px #2c3e50,
inset -125px -5px 0 0px #16a085,
inset 0 5px 0 0 #2ecc71
}
.help{
position: absolute;
height: 5px;
width: 125px;
background-color: #16a085;
left: 25px;
bottom: 0;
}

Чтобы сделать темно-зеленую тень, нужно использовать относительно спозиционированный класс .help с тенью такого же цвета и размера, но смещенной в другой угол кнопки, вот так:

.btn {
display: block;
margin: 0 25px;
margin-top: 100px;
padding: 20px 0;
width: 250px;
border: none;
box-sizing: content-box;
background-color: #2c3e50;
box-shadow:
inset 0 5px 0 0 #2ecc71,
inset 0 -5px 0 0 #2ecc71,
0 -20px 0 -10px #c0392b,
0 20px 0 -10px #2980b9,
0 -40px 0 -20px #e74c3c,
0 40px 0 -20px #3498db;
color: white;
text-align: center;
text-transform: uppercase;
font: inherit;
line-height: 20px;
}

.help {
position: relative;
top: -5px;
left: 25px;
height: 5px;
width: 125px;
background-color: #16a085;
box-shadow: 125px -55px 0 0 #16a085;
}