/* ===========================
   CREATOR SIDEBAR
=========================== */

.creator-sidebar{

    position:fixed;

    left:0;

    top:0;

    width:260px;

    height:100vh;

    background:rgba(15,15,20,.95);

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

    padding:30px 20px;

    z-index:1000;

}


/* Logo */

.creator-logo{

    font-size:28px;

    font-weight:800;

    color:#fff;

    margin-bottom:40px;

}


.creator-logo span{

    display:block;

    font-size:13px;

    color:#8B5CF6;

    margin-top:5px;

}


/* Menu */

.creator-menu{

    display:flex;

    flex-direction:column;

    gap:10px;

}


.creator-menu a{

    display:flex;

    align-items:center;

    gap:15px;

    padding:14px 18px;

    border-radius:14px;

    color:#cfcfcf;

    text-decoration:none;

    transition:.3s;

}


.creator-menu a i{

    width:20px;

}


.creator-menu a:hover,
.creator-menu a.active{

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

    color:#fff;

}


.creator-menu a.active i{

    color:#8B5CF6;

}


.creator-menu .logout{

    margin-top:30px;

    color:#ff6b6b;

}


/* Main Area */

.creator-main{

    margin-left:260px;

}


/* Mobile */

@media(max-width:768px){

.creator-sidebar{

    transform:translateX(-100%);

}


.creator-main{

    margin-left:0;

}

}

/* ===========================
   CREATOR PROFILE CARD
=========================== */

.creator-profile-card{

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

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

    border-radius:20px;

    padding:20px;

    text-align:center;

    margin-bottom:35px;

}


.profile-avatar{

    width:70px;

    height:70px;

    margin:0 auto 15px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(135deg,#8B5CF6,#6366F1);

    color:#fff;

    font-size:24px;

    font-weight:800;

}


.creator-profile-card h3{

    color:#fff;

    font-size:18px;

    margin-bottom:8px;

}


.creator-profile-card p{

    color:#8B5CF6;

    font-size:14px;

}

/* ===========================
   MOBILE SIDEBAR ANIMATION
=========================== */

.creator-overlay{

    display:none;

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

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

    backdrop-filter:blur(5px);

    z-index:900;

}


@media(max-width:768px){

.creator-sidebar{

    transform:translateX(-100%);

    transition:.35s ease;

}


.creator-sidebar.active{

    transform:translateX(0);

}


.creator-overlay.active{

    display:block;

}


.creator-main{

    margin-left:0;

}

}