/* ===========================
   ALL CREATORS PAGE
=========================== */

.all-creators-page{

    min-height:100vh;

    padding:140px 20px 90px;

    background:

    radial-gradient(
        circle at 50% 0%,
        rgba(139,92,246,.18),
        transparent 42%
    ),

    #09090b;

}


/* HERO */

.all-creators-hero{

    text-align:center;

    max-width:800px;

    margin:0 auto 60px;

}


.all-creators-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:30px;

    color:#c4b5fd;

    background:rgba(139,92,246,.12);

    border:1px solid rgba(139,92,246,.35);

    font-size:13px;

    letter-spacing:1px;

}


.all-creators-hero h1{

    margin:20px 0 12px;

    color:#fff;

    font-size:clamp(34px,5vw,60px);

    line-height:1.1;

}


.all-creators-hero p{

    margin:0;

    color:#999;

    font-size:18px;

    line-height:1.6;

}


/* CONTAINER */

.all-creators-container{

    width:90%;

    max-width:1350px;

    margin:auto;

}


/* GRID */

.all-creators-grid{

    display:grid;

    grid-template-columns:

    repeat(3,1fr);

    gap:25px;

}


/* CARD */

.all-creator-card{

    overflow:hidden;

    background:

    linear-gradient(

        145deg,

        rgba(255,255,255,.09),

        rgba(255,255,255,.025)

    );

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

    border-radius:22px;

    transition:.35s;

}


.all-creator-card:hover{

    transform:translateY(-8px);

    border-color:#8B5CF6;

    box-shadow:

    0 20px 55px

    rgba(139,92,246,.2);

}


/* IMAGE */

.all-creator-image{

    height:290px;

    position:relative;

    overflow:hidden;

}


.all-creator-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}


.all-creator-card:hover

.all-creator-image img{

    transform:scale(1.07);

}


/* FEATURED */

.featured-label{

    position:absolute;

    top:15px;

    left:15px;

    padding:7px 13px;

    border-radius:20px;

    color:#fff;

    background:rgba(0,0,0,.7);

    backdrop-filter:blur(10px);

    font-size:12px;

}


/* INFO */

.all-creator-info{

    padding:22px;

}


.all-creator-info h2{

    margin:0 0 5px;

    color:#fff;

    font-size:21px;

}


.creator-verified{

    color:#8B5CF6;

    font-size:16px;

}


.creator-username{

    margin:0 0 16px;

    color:#999;

}


.creator-followers{

    display:flex;

    align-items:center;

    gap:8px;

    color:#bbb;

    font-size:14px;

}


.creator-followers i{

    color:#8B5CF6;

}


/* BOTTOM */

.creator-card-bottom{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    gap:15px;

    margin-top:24px;

}


.creator-price{

    display:flex;

    flex-direction:column;

}


.creator-price span{

    color:#888;

    font-size:11px;

}


.creator-price strong{

    color:#fff;

    font-size:22px;

}


/* BOOK BUTTON */

.book-now-btn{

    display:flex;

    align-items:center;

    gap:8px;

    padding:11px 16px;

    border-radius:12px;

    color:#fff;

    background:#8B5CF6;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}


.book-now-btn:hover{

    background:#6D28D9;

    transform:translateX(3px);

}


/* EMPTY */

.no-creators{

    grid-column:1/-1;

    padding:80px 20px;

    text-align:center;

    color:#aaa;

}


.no-creators i{

    margin-bottom:20px;

    color:#8B5CF6;

    font-size:50px;

}


.no-creators h2{

    color:#fff;

}


/* TABLET */

@media(max-width:1000px){

    .all-creators-grid{

        grid-template-columns:

        repeat(2,1fr);

    }

}


/* ===========================
   MOBILE - 2 CREATORS PER ROW
=========================== */

@media(max-width:600px){

    .all-creators-page{

        padding:120px 10px 60px;

    }


    .all-creators-container{

        width:100%;

    }


    .all-creators-grid{

        display:grid;

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

        gap:12px;

    }


    .all-creators-hero{

        margin-bottom:35px;

    }


    .all-creators-hero h1{

        font-size:32px;

    }


    .all-creators-hero p{

        font-size:14px;

    }


    .all-creator-image{

        height:210px;

    }


    .all-creator-info{

        padding:13px;

    }


    .all-creator-info h2{

        font-size:15px;

        white-space:nowrap;

        overflow:hidden;

        text-overflow:ellipsis;

    }


    .creator-username{

        font-size:12px;

        white-space:nowrap;

        overflow:hidden;

        text-overflow:ellipsis;

    }


    .creator-followers{

        font-size:11px;

        gap:4px;

    }


    .creator-card-bottom{

        display:block;

        margin-top:14px;

    }


    .creator-price span{

        font-size:9px;

    }


    .creator-price strong{

        font-size:17px;

    }


    .book-now-btn{

        justify-content:center;

        width:100%;

        box-sizing:border-box;

        margin-top:10px;

        padding:9px 5px;

        font-size:11px;

    }


    .featured-label{

        top:8px;

        left:8px;

        padding:5px 7px;

        font-size:9px;

    }


    .creator-verified{

        font-size:12px;

    }

}