.stream-items .stream-item:not(:last-of-type) {
    margin-bottom: 30px;
}

.stream-item {
    background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.3) 50%, rgba(105, 85, 180, 0.1) 100%);
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    align-items: center;
    padding: 30px;
    border-radius: 5px;
    position: relative;
    -webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
    transition: all .3s cubic-bezier(.165, .84, .44, 1);
}

.stream-item:hover {
    background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.5) 50%, rgba(105, 85, 180, 0.1) 100%);
}

.stream-item:before,
.stream-item:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.stream-item:before {
    background: linear-gradient(90deg, rgba(152, 65, 255, 0.1) 0%, rgba(152, 65, 255, 1) 50%, rgba(152, 65, 255, 0.1) 100%);
    height: 4px;
    z-index: 1;
}

.stream-item:after {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    z-index: -1;
}

.stream-item .stream-image img {
    max-width: 100%;
    width: 100%;
    border-radius: 5px;
}

.stream-item .stream-content .game-type {
    background-image: linear-gradient(to right bottom, #f90cff, #e027ff, #c534ff, #a93eff, #8a44ff, #6560ff, #3c73ff, #0081ff, #009cff, #00b3ff, #00c6f5, #0cd7e8);
    clip-path: polygon(90% 0, 100% 35%, 100% 100%, 0% 100%, 0 66%, 0 0);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    padding: 12px 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.stream-item .stream-content h2 {
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 15px;
}

.stream-item .stream-content .stream-date {
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}

.stream-item .stream-links a {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}

.stream-item .stream-links a:not(:last-of-type) {
    margin-bottom: 10px;
}

.stream-item .stream-links a i {
    font-size: 20px;
    margin-right: 5px;
    font-weight: inherit;
}

@media (min-width: 768px) {
    .stream-item {
        grid-template-columns: 2fr 2fr 1fr;
        clip-path: polygon(95% 0, 100% 20%, 100% 100%, 0% 100%, 0 66%, 0 0);
        padding: 20px 30px;
    }

    .stream-item .stream-image img {
        max-width: 300px;
    }

    .stream-item .stream-links a {
        display: flex;
        margin-right: 0;
    }
}

@media (max-width: 992px) {
    .stream-item .stream-content h2 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .stream-item {
        text-align: center;
    }
}

/* ===== Pagination ===== */

.el-blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}

.el-blog-pagination span, .el-blog-pagination a {
    background-color: rgba(152, 65, 255, 0.3);
    clip-path: polygon(0% 0%, 70% 0, 100% 30%, 100% 100%, 0 100%);
    width: 40px;
    height: 40px;
    line-height: 1;
    text-align: center;
    color: #fff;
    border-radius: 2px;
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: visible;
}

.el-blog-pagination a:hover, .el-blog-pagination span.current {
    background-color: var(--galactic-primary-color, "#9841ff");
    color: #fff;
}

.el-blog-pagination a svg {
    width: 20px;
}

.rtl .el-blog-pagination a.next, .rtl .el-blog-pagination a.prev {
    transform: rotate(180deg);
}

/* Loadin Button */
.loading-btn-wrap {
    display: block;
    text-align: center;
    margin-top: 30px;
}

.loading-btn-wrap button {
    visibility: visible;
    height: auto;
    line-height: 1;
    padding: 15px 35px;
}

.loading-btn-wrap button span {
    background-color: var(--galactic-primary-color, "#9841ff");
}