.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #ced4da;
    border-radius: 15px;
    height: 32px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px;
    font-size: 13px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 32px;
}

.game-card {
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 20px -10px rgb(0 0 0 / 90%);
    transition: 0.4s transform cubic-bezier(0.06, 0.92, 1, 1), 0.4s background cubic-bezier(0.15, 0.67, 0.58, 1);
    border-radius: 6px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: Inter, -apple-system, BlinkMacSystemFont, Arial, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    margin: 0 4px;
    height: 210px;
}

.game-card:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(-135deg, rgba(200, 230, 250, 1) 0%, transparent 50%);
    background-size: 200%;
    transition: 0.4s transform cubic-bezier(0.06, 0.92, 1, 1), 0.4s background cubic-bezier(0.15, 0.67, 0.58, 1);
}

.game-card:hover {
    transform: perspective(80em) rotateX(10deg) scale(1.05);
    box-shadow: 0 10px 30px -10px rgb(0 0 0 / 80%);
    z-index: 1;
}

.game-card:hover:before {
    background-position: 50%;
}

.cat-img {
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    object-position: center top;
}

.cat-name {
    height: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2f2f2fc7;
    color: #fff;
    text-align: center;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}
