.video-box {
    position: relative;
}

.maximize-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 6px 10px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
}

.maximize-btn:hover {
    background: #000;
}

.talent-card {
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.talent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.video-wrapper video {
    height: 200px;
    object-fit: cover;
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #007bff;
}

.custom-btn{
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:50px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:0.3s ease;
    position:relative;
    overflow:hidden;
}

/* ICON */
.btn-icon{
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.2);
    font-size:14px;
}

/* VIEW */
.view-btn{
    background:linear-gradient(135deg,#0d6efd,#00b4ff);
    color:#fff;
    box-shadow:0 5px 15px rgba(13,110,253,0.3);
}

.view-btn:hover{
    transform:translateY(-3px);
    color:#fff;
    box-shadow:0 8px 20px rgba(13,110,253,0.5);
}

/* CHALLENGE */
.challenge-btn{
    background:linear-gradient(135deg,#ff512f,#dd2476);
    color:#fff;
    box-shadow:0 5px 15px rgba(255,81,47,0.3);
}

.challenge-btn:hover{
    transform:translateY(-3px) scale(1.03);
    color:#fff;
    box-shadow:0 8px 20px rgba(255,81,47,0.5);
}

/* MOBILE */
@media(max-width:576px){

    .custom-btn{
        padding:8px 14px;
        font-size:13px;
    }

}