.vip_portfolio_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 50px 10px;
    max-width: 1600px;
    margin: 0 auto;
}
.card_head_vips {
    width: 300px;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(to top, rgba(8,8,8,1) 20%, rgba(0,0,0,0) 100%);
    background-size: cover;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.card_head_vips::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(to top, rgba(8,8,8,1) 60%, rgba(0,0,0,0) 100%);
    z-index: 2;
    opacity: 0;
    transition: .6s;
}
.card_head_vips:hover.card_head_vips::after {
    transition: 0.6s;
    opacity: 1;
}
.on_off_site,
.off_site {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 4;
    background: rgba(75, 232, 164, 0.6);
}
.off_site {
    background: rgba(127, 30, 22, 0.77);
    color: var(--red);
}
.on_off_site {
    background: rgba(72, 234, 148,.6);
    color: #48EA94;
}
.general {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 3;
    transition: bottom 0.4s ease;

}
.card_head_vips:hover .general {
    bottom: 110px;
    transition: bottom 0.4s ease;

}
.general .nickname_vip {
    font-family: var(--font-family-1);
    text-transform: uppercase;
    font-size: 1.2em;
    font-weight: 800;
    color: var(--light);
    text-transform: uppercase;
    margin: 0 0 4px 0;
}
.last_game_date {
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(180deg, #FDB931 0%, #FEDB37 33%, #9F7928 70%, #8A6E2F 91%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}
.more-info {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease 0.2s;
    color: var(--light);
    font-size: 1em;
    opacity: 0;
}
.card_head_vips:hover .more-info {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}
@media (max-width: 768px) {
    .card_head_vips {
        width: 180px;
        height: 180px;
    }
    .general .nickname_vip {
        font-size: 1.4em;
    }
    .last_game_date {
        font-size: 1.1em;
    }
    .general {
        bottom: 55px;
    }
    .card_head_vips:hover .general {
        bottom: 85px;
    }
    .more-info {
        bottom: 15px;
    }
    .card_head_vips:hover .more-info {
        bottom: 25px;
    }
    .on_off_site,
    .off_site {
        top: 10px;
        width: 70px;
        height: 28px;
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .card_head_vips {
        width: 150px;
        height: 150px;
    }
    .general .nickname_vip {
        font-size: 1.2em;
    }
    .last_game_date {
        font-size: 1em;
    }
    .general {
        bottom: 45px;
    }
    .card_head_vips:hover .general {
        bottom: 75px;
    }
    .more-info {
        bottom: 10px;
    }
    .card_head_vips:hover .more-info {
        bottom: 20px;
    }
    .on_off_site,
    .off_site {
        top: 8px;
        width: 60px;
        height: 24px;
        font-size: 11px;
    }
}
.header_page_cstom{
    position: relative;
    text-align: center;
    margin-top: 8px;
    font-family: var(--font-family-1);
    color: var(--light);
    font-size: 26px;
    font-weight: 700px;
    text-transform: uppercase;
    z-index: 2 !important;
}
@media (max-width: 768px) {
    .header_page_cstom {
        display: none !important;
    }
}