body{
    margin:0;
    font-family:Arial;
    background:#111;
    color:#fff;
}

.ad{
    text-align:center;
    padding:10px;
    background:#222;
}

.grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    padding:10px;
}

.card{
    position:relative;
    aspect-ratio:1/1;
    overflow:hidden;
    background:#000;
}

.card video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    bottom:0;
    width:100%;
    text-align:center;
    background:rgba(0,0,0,0.6);
    padding:5px;
}

.player video{
    width:100%;
    max-height:80vh;
    background:#000;
}

.views{
    text-align:center;
    margin:10px 0;
}