.text-shadow {
    text-shadow: 1px 1px 3px #000000;
}

.card-bg-dark {
    background: #2a323c;
}

/* See more start */
.btn-see-more{
    position: relative;
    color: #ecf9ec;
}

.btn-see-more:before, 
.btn-see-more:after {
    display: block;
    position: absolute;
    width: 0;
    height: 10px;
    background-color: #339966;
    content:"";
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    height:2px;
}

.btn-see-more:before {
    left: 0;
    top: -2px;
}
.btn-see-more:after {
    right: 0;
    bottom: -2px;
}

.btn-see-more:hover {
    color: #339966;
}

.btn-see-more:hover:after, 
.btn-see-more:hover:before {
    width: 100%;
    height:2px;
}
/* See more end */

.game-container {
    height: 203px;
}

/* Media Query */
@media only screen and (max-width: 575px) {
    .card-container, .card-container img {
        height: 170px !important;
    }

    .game-container {
        height: 170px;
    }
}

