.streamer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:40px;
}

.streamer-card{
    background:#181825;
    border-radius:20px;
    overflow:hidden;
    text-align:center;
    transition:.3s;
    border:1px solid rgba(255,255,255,.08);
}

.streamer-card:hover{
    transform:translateY(-8px);
    border-color:#9147ff;
    box-shadow:0 15px 40px rgba(145,71,255,.35);
}

.streamer-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.streamer-card h3{
    margin:20px 0 10px;
    color:#fff;
}

.streamer-card p{
    color:#bbb;
    padding:0 20px;
}

.streamer-buttons{
    padding:25px;
}

.streamer-buttons .btn{
    width:100%;
    justify-content:center;
}