/* ===========================
   FEATURED CREATORS
=========================== */

.featured{
    padding:80px 5%;
    background:#0d0d12;
}

.featured-title{
    text-align:center;
    font-size:38px;
    color:#fff;
    font-weight:700;
    margin-bottom:45px;
}

.creator-slider{
    display:flex;
    gap:25px;
    overflow-x:auto;
    scroll-behavior:smooth;
    padding-bottom:15px;
}

.creator-slider::-webkit-scrollbar{
    display:none;
}

.creator-card{
    min-width:260px;
    background:#17171f;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    overflow:hidden;
    transition:.35s;
    flex-shrink:0;
}

.creator-card:hover{
    transform:translateY(-8px);
    border-color:#8b5cf6;
    box-shadow:0 20px 40px rgba(139,92,246,.30);
}

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

.creator-info{
    padding:18px;
}

.creator-name{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
}

.creator-category{
    color:#9d9d9d;
    font-size:15px;
}

.creator-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:18px;
}

.price{
    color:#8b5cf6;
    font-size:22px;
    font-weight:700;
}

.book-btn{
    background:#8b5cf6;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.book-btn:hover{
    background:#a855f7;
}

.rating{
    margin-top:10px;
    color:#ffc107;
    font-size:15px;
}

/* ===========================
   PREMIUM CREATOR CARDS
=========================== */


.creator-slider{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}



.creator-card{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.1);

    border-radius:25px;

    overflow:hidden;

    transition:.4s ease;

    backdrop-filter:blur(15px);

}



.creator-card:hover{

    transform:translateY(-12px);

    border-color:#8B5CF6;

    box-shadow:0 25px 50px rgba(139,92,246,.25);

}



.creator-image{

    height:330px;

    position:relative;

    overflow:hidden;

}



.creator-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s ease;

}



.creator-card:hover .creator-image img{

    transform:scale(1.08);

}




/* Instagram Style Verified Badge */


.verified-badge{

    position:absolute;

    right:15px;

    bottom:15px;

    width:32px;

    height:32px;

    background:#1DA1F2;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    border:3px solid #09090B;

}



.creator-info{

    padding:25px;

}



.creator-info h3{

    color:#fff;

    font-size:22px;

    margin-bottom:8px;

}



.creator-info p{

    color:#aaa;

}



.creator-rating{

    margin:15px 0;

    color:#FFD700;

}



.creator-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

}



.creator-bottom span{

    color:#8B5CF6;

    font-size:22px;

    font-weight:700;

}



.creator-bottom a{

    background:#8B5CF6;

    color:#fff;

    padding:10px 20px;

    border-radius:50px;

    transition:.3s;

}



.creator-bottom a:hover{

    background:#6D28D9;

}




@media(max-width:900px){

.creator-slider{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:600px){

.creator-slider{

grid-template-columns:1fr;

}

}