/* === CREATOR NAVBAR === */

.creator-nav {
    width: 100%;
    background: rgba(10, 0, 20, 0.6);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(160, 67, 255, 0.35);
    padding: 12px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: sticky;
    top: 0;
    z-index: 999;
}

/* LEFT SIDE LOGO */
.creator-nav .nav-logo {
    color: #e3d1ff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(160, 67, 255, 0.7);
}

/* CENTER NAVIGATION */
.creator-nav .nav-center {
    display: flex;
    gap: 22px;
}

.creator-nav .nav-item {
    color: #cdbaff;
    font-size: 15px;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 9px;
    transition: 0.2s ease;
}

.creator-nav .nav-item:hover {
    background: rgba(160, 67, 255, 0.3);
    color: white;
    box-shadow: 0 0 12px rgba(160, 67, 255, 0.6);
}

/* RIGHT SIDE LOGOUT */
.logout-btn {
    color: #ff8adf;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 0, 150, 0.2);
    border: 1px solid rgba(255, 0, 150, 0.4);
    transition: 0.2s;
}

.logout-btn:hover {
    background: rgba(255, 0, 150, 0.45);
    box-shadow: 0 0 12px rgba(255, 0, 150, 0.6);
    color: white;
}

/* MOBILE */
@media (max-width: 700px) {
    .creator-nav {
        flex-direction: column;
        gap: 10px;
        padding: 14px;
    }

    .creator-nav .nav-center {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
}
